-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcompose.yml
19 lines (18 loc) · 870 Bytes
/
compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
services:
comiceater:
# Run from source
build:
context: .
dockerfile: Dockerfile
container_name: comiceater
volumes:
# - /lockfile:/lockfile # Required to be shared local folder to avoid raceconditions if multiple programs can launch ComicEater
- /mnt/w/collection:/mnt/w/collection/
- /mnt/g/queue:/mnt/g/queue/
env_file: ".env"
environment:
- PUID=1000
- PGID=1000
- /etc/timezone:/etc/timezone:ro # TODO: potentially allow for env var
command: ["yarn", "main", "-vv", "--configFile", "/mnt/w/collection/ComicEater.yml", "--maintainCollection"]
# command: ["yarn", "main", "-vvv", "--configFile", "/mnt/w/collection/ComicEater.yml", "--getCovers", "--downloadCover", "/mnt/w/collection/シリーズ/イサック", "--coverQuery", "site:bookmeter.com イサック", "--noCoverValidate"]