-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
41 lines (38 loc) · 931 Bytes
/
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
services:
sorusora:
image: ghcr.io/seoulsky/sorusora:latest
container_name: sorusora
volumes:
- .logs:/app/logs
- .cache:/app/cache
- .cache/algos_packages:${HOME}/.local/share/argos-translate/packages/
- .cache/algos_cache:${HOME}/.local/cache/argos-translate/
env_file:
- .env
restart: always
mongo:
image: mongo:7.0.5
container_name: mongo
ports:
- "27017:27017"
volumes:
- ~/mongoDB:/data/db
restart: always
nginx:
image: nginx:1.27.1
container_name: nginx
ports:
- "80:80"
- "443:443"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: always
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_POLL_INTERVAL=300
restart: always