forked from getodk/central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
62 lines (62 loc) · 1.43 KB
/
docker-compose.dev.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Assumption: This file will be merged by `docker compose`
#
# What it does:
# Sets profiles for each service depending on whether that
# service is required for Central development or not.
#
# depends_on of some services are reset using !reset custom yml tag
# nb: can't replace depends_on so we have removed all the values, ok for dev
services:
postgres14:
profiles:
- central
ports:
- 5432:5432
postgres:
profiles:
- central
image: debian:bullseye
command: /bin/sh -c 'mkdir -p /var/lib/postgresql/14/data && touch /var/lib/postgresql/14/.postgres14-upgrade-successful'
mail:
profiles:
- none
service:
profiles:
- none
nginx:
profiles:
- none
pyxform:
profiles:
- central
ports:
- 5001:80
secrets:
profiles:
- central
volumes:
- dev_secrets:/etc/secrets
working_dir: /etc/secrets
command: /bin/sh -c 'echo "s0m3v3rys3cr3tk3y" > enketo-secret && echo "this $3cr3t key is crackable" > enketo-less-secret && echo "enketorules" > enketo-api-key'
enketo:
profiles:
- central
volumes:
- dev_secrets:/etc/secrets
depends_on: !override
- secrets
- enketo_redis_main
environment:
- ENV=DEV
extra_hosts:
- "${DOMAIN}:host-gateway"
ports:
- 8005:8005
enketo_redis_main:
profiles:
- central
enketo_redis_cache:
profiles:
- central
volumes:
dev_secrets: