-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
68 lines (66 loc) · 1.48 KB
/
docker-compose.override.yml
File metadata and controls
68 lines (66 loc) · 1.48 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
66
67
68
version: '3'
services:
webapp:
networks:
hc-network:
ipv4_address: 172.25.0.20
environment:
- NODE_ENV=development
- MAINTENANCE=${MAINTENANCE}
- WEBAPP_HOST=172.25.0.20
- WEBAPP_BASE_URL=http://172.25.0.20:3000
- API_HOST=172.25.0.11
- WEBAPP_PORT=3000
- API_PORT=3030
- MAPBOX_TOKEN=pk.eyJ1IjoiaHVtYW4tY29ubmVjdGlvbiIsImEiOiJjajl0cnBubGoweTVlM3VwZ2lzNTNud3ZtIn0.KZ8KK9l70omjXbEkkbHGsQ
- SENTRY_DNS_PUBLIC=${SENTRY_DNS_PUBLIC}
- EMBED_API_URL=${EMBED_API_URL}
# these secrets should only be accessible on the server:
- SENTRY_DNS_PRIVATE=${SENTRY_DNS_PRIVATE}
- EMBED_API_TOKEN=${EMBED_API_TOKEN}
depends_on:
- api
mongo:
image: mongo
networks:
- hc-network
command: "--smallfiles --logpath=/dev/null"
api:
image: humanconnection/api-feathers
depends_on:
- maildev
- thumbor
- mongo
environment:
- NODE_ENV=staging
ports:
- "3030:3030"
stdin_open: true
tty: true
networks:
hc-network:
ipv4_address: 172.25.0.11
thumbor:
networks:
- hc-network
maildev:
image: djfarrelly/maildev
networks:
- hc-network
ports:
- "1080:80"
- "1025:25"
thumbor:
image: apsl/thumbor
networks:
- hc-network
ports:
- "8000:8000"
networks:
hc-network:
driver: bridge
ipam:
driver: default
config:
-
subnet: 172.25.0.0/16