-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (47 loc) · 1.47 KB
/
docker-compose.yml
File metadata and controls
47 lines (47 loc) · 1.47 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
version: "3.3"
services:
caddy:
container_name: caddy-server
image: caddy:2.4.6-alpine
restart: always
ports:
- 80:80
- 443:443
volumes:
- ./static:/usr/share/caddy
- ./Caddyfile:/etc/caddy/Caddyfile
- ./caddy_data:/data
watchtower:
container_name: watchtower
image: v2tec/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /home/ubuntu/.docker/config.json:/config.json
command: watchtower crime-dashboard essential-workers odc-crime odc-redb --interval 120
crime-dashboard:
container_name: crime-dashboard
image: docker.pkg.github.com/bransonf/dashboard/crime-dashboard:latest
restart: always
ports:
- 3838:3838
depends_on:
- caddy
essential-workers:
container_name: essential-workers
image: docker.pkg.github.com/stlrda/essential-workers/essential-workers:latest
restart: always
depends_on:
- caddy
odc-crime:
container_name: odc-crime
image: docker.pkg.github.com/stlrda/open-data-commons/odc-crime:latest
restart: always
depends_on:
- caddy
odc-redb:
container_name: odc-redb
image: docker.pkg.github.com/stlrda/open-data-commons/odc-redb:latest
restart: always
depends_on:
- caddy