forked from iKonoTelecomunicaciones/menuflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
45 lines (40 loc) · 1.08 KB
/
docker-compose.yaml
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
version: '3.9'
services:
# synapse:
# image: matrixdotorg/synapse:v1.74.0
# environment:
# - SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
# volumes:
# - ./volumes/synapse:/data/
# ports:
# - 8008:8008
# depends_on:
# - postgres
menuflow:
image: bramenn/menuflow:latest
restart: unless-stopped
# Only use this if you want to develop in this project
# build: .
ports:
- 29400:29400
depends_on:
- postgres
# Only use this if you want to develop in this project
# entrypoint: ./run.sh dev
volumes:
# Only use this if you want to develop in this project
# - .:/opt/menuflow
- ./volumes/menuflow:/data
- ./volumes/menuflow/flows:/data/flows
postgres:
image: postgres:12-alpine
restart: unless-stopped
ports:
- "5434:5432"
environment:
POSTGRES_USER: menuflow
POSTGRES_PASSWORD: secretfoo
POSTGRES_DB: menuflow
POSTGRES_INITDB_ARGS: --encoding=UTF-8 --lc-collate=C --lc-ctype=C
volumes:
- ./volumes/schemas:/var/lib/postgresql/data