-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (38 loc) · 1 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: '2.1'
services:
# Admin front end
admin:
image: flatlandchurch/flatland-admin-react-public:latest
container_name: admin
ports:
- 6060:80
# Flatland Church main site
site:
image: flatlandchurch/flatland-site-reactjs-public:latest
container_name: site
restart: on-failure
ports:
- 6061:3000
# Flatland Church main site
links:
image: flatlandchurch/flatland-links-js-public:latest
container_name: links
ports:
- 6062:80
maps:
image: flatlandchurch/flatland-neighborhoods:latest
container_name: maps
ports:
- 6163:3000
today:
image: flatlandchurch/today
container_name: today
ports:
- 9093:80
# Watchtower - This container watches for updates to the other containers and pulls and restarts them automatically.
watchtower:
image: v2tec/watchtower
container_name: watchtower
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 30 admin site links maps today