-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (33 loc) · 831 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
35 lines (33 loc) · 831 Bytes
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
services:
mediadownloadbot:
build: .
image: ghcr.io/netherquartz/mediadownloadbot:latest
container_name: mediadownloadbot
restart: always
environment:
- TOKEN
- LOGGING_LEVEL
- COBALT_URL
mem_limit: 2g
shm_size: 2g
depends_on:
- cobalt
cobalt:
image: ghcr.io/imputnet/cobalt:11
init: true
read_only: true
restart: unless-stopped
container_name: cobalt
ports:
- 9000:9000/tcp
environment:
API_URL: $API_URL
FORCE_LOCAL_PROCESSING: always
labels:
- com.centurylinklabs.watchtower.scope=cobalt
watchtower:
image: ghcr.io/containrrr/watchtower
restart: unless-stopped
command: --cleanup --scope cobalt --interval 900 --include-restarting
volumes:
- /var/run/docker.sock:/var/run/docker.sock