-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (58 loc) · 1.77 KB
/
docker-compose.yml
File metadata and controls
65 lines (58 loc) · 1.77 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3.8'
services:
signal:
image: runestone123456789/northy:latest
container_name: signal
volumes:
- .:/app
command: python /app/cli_signal.py --prod watch
labels:
- "com.centurylinklabs.watchtower.enable=true"
# saxoMarket:
# image: runestone123456789/northy:latest
# container_name: saxoMarket
# volumes:
# - .:/app
# command: python /app/cli_saxo.py --prod --profile market watch
# labels:
# - "com.centurylinklabs.watchtower.enable=true"
# saxoLimit:
# image: runestone123456789/northy:latest
# container_name: saxoStagingLimit
# volumes:
# - .:/app
# command: python /app/cli_saxo.py --prod --profile limit watch
# labels:
# - "com.centurylinklabs.watchtower.enable=true"
#saxoDev:
# image: runestone123456789/northy:latest
# container_name: saxoDev
# volumes:
# - .:/app
# command: python /app/cli_saxo.py --prod --profile dev watch
# labels:
# - "com.centurylinklabs.watchtower.enable=true"
# Docker Free, doesn't allow 2-way file sync
# Podman is shit and failed to make it work
#
#noc:
# image: runestone123456789/northy:latest
# container_name: noc
# volumes:
# - .:/app
# - type: bind
# source: /c/Users/User/AppData/Local/Microsoft/Windows/Notifications/wpndatabase.db
# target: /host_notifications/wpndatabase.db
# command: python /app/cli_noc.py --prod watch
# labels:
# - "com.centurylinklabs.watchtower.enable=true"
watchtower:
image: containrrr/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
command: --interval 30 --label-enable
environment:
- REPO_USER=${DOCKER_USERNAME}
- REPO_PASS=${DOCKER_PASSWORD}