Skip to content

build(deps): bump got from 14.6.2 to 14.6.3 #116

build(deps): bump got from 14.6.2 to 14.6.3

build(deps): bump got from 14.6.2 to 14.6.3 #116

Workflow file for this run

services:

Check failure on line 1 in .github/workflows/docker-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-image.yml

Invalid workflow file

(Line: 1, Col: 1): Unexpected value 'services', (Line: 42, Col: 1): Unexpected value 'networks', (Line: 1, Col: 1): Required property is missing: jobs
wikiless:
build:
context: .
dockerfile: Dockerfile
container_name: wikiless
hostname: wikiless
restart: always
networks:
- wikiless_net
environment:
REDIS_HOST: redis://wikiless_redis:6379
ports:
- "127.0.0.1:8180:8080" # change port if needed
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
depends_on:
- wikiless_redis
wikiless_redis:
container_name: wikiless_redis
hostname: wikiless_redis
image: redis:latest
restart: always
networks:
- wikiless_net
user: nobody
read_only: true
security_opt:
- no-new-privileges:true
tmpfs:
- /data:size=10M,mode=0770,uid=65534,gid=65534,noexec,nosuid,nodev
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
networks:
wikiless_net: