-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 871 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (38 loc) · 871 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
36
37
38
39
40
41
version: '3'
services:
web-server:
image: 'ghcr.io/reflectcal/web-server-container:1.0.5'
ports:
- '443:443'
- '80:80'
- '2222:22'
volumes:
- /etc/ssl:/etc/ssl
environment:
- EMAIL=mail@example.com
- DOMAIN=example.com
- APP_SERVER_URL=app-server:3000
restart: unless-stopped
mongo:
image: 'mongo:3.4'
ports:
- '2223:22'
volumes:
- '/data/db:/data/db'
restart: unless-stopped
app-server:
image: 'ghcr.io/reflectcal/app-server-container:1.0.9'
ports:
- '2224:22'
environment:
- CREDS_OBJECT={}
- DB_URL=mongo:27017
restart: unless-stopped
mail-daemon:
image: 'ghcr.io/reflectcal/mail-daemon-container:1.0.2'
ports:
- '2225:22'
environment:
- CREDS_OBJECT={}
- DB_URL=mongo:27017
restart: unless-stopped