forked from kobotoolbox/kobo-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.backend.primary.override.yml.sample
54 lines (49 loc) · 1.75 KB
/
docker-compose.backend.primary.override.yml.sample
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
# For public, HTTPS servers.
version: '2.2'
services:
postgres:
#environment:
# - POSTGRES_BACKUP_FROM_SECONDARY=True
# Uncomment `ports` section if you want to expose ports (e.g. use as separated servers)
# Before uncommenting, be sure you have a firewall configured to prevent these ports
# from being publicly accessible
#ports:
# - 5432:5432
# Comment out `networks` section below if you want to expose ports
networks:
kobo-be-network:
aliases:
- postgres.kobo.private
mongo:
# Uncomment `ports` section if you want to expose ports (e.g. use as separated servers)
# Before uncommenting, be sure you have a firewall configured to prevent these ports
# from being publicly accessible
#ports:
# - 27017:27017
# Comment out section below if you want to expose ports
networks:
kobo-be-network:
aliases:
- mongo.kobo.private
redis_main:
# Uncomment `ports` section if you want to expose ports (e.g. use as separated servers)
# Before uncommenting, be sure you have a firewall configured to prevent these ports
# from being publicly accessible
#ports:
# - 6379:6379
# Comment out `networks` section below if you want to expose ports
networks:
kobo-be-network:
aliases:
- redis-main.kobo.private
redis_cache:
# Uncomment `ports` section if you want to expose ports (e.g. use as separated servers)
# Before uncommenting, be sure you have a firewall configured to prevent these ports
# from being publicly accessible
#ports:
# - 6380:6380
# Comment out `networks` section below if you want to expose ports
networks:
kobo-be-network:
aliases:
- redis-cache.kobo.private