-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (44 loc) · 1.04 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: "3.3"
services:
dist-youngs-downloder:
build:
context: .
args:
PUID: 1000
PGID: 1000
image: dist-youngs-downloader
restart: unless-stopped
volumes:
- ./young-downloader-log:/comics-downloader/young-downloader-log
- ./wishlist.json:/comics-downloader/wishlist.json:ro
- ./temp_download:/comics-downloader/temp_download
- ./zipped_output:/comics-downloader/zipped_output
logging:
driver: json-file
options:
max-size: "50m"
max-file: "2"
dist-webdav:
image: ugeek/webdav:amd64
restart: unless-stopped
ports:
- "80:80"
environment:
USERNAME: username
PASSWORD: password
UID: 1000
GID: 1000
TZ: Asia/Seoul
volumes:
- ./zipped_output:/media
- ./passwd:/etc/passwd:ro
dist-komga:
image: gotson/komga
volumes:
- ./komga-config:/config
- ./zipped_output:/data
- ./timezone:/etc/timezone:ro
ports:
- 8080:8080
user: "1000:1000"
restart: unless-stopped