-
Notifications
You must be signed in to change notification settings - Fork 44
/
docker-compose.yml
134 lines (131 loc) · 2.94 KB
/
docker-compose.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# A Dockerfile for development/testing
# version: "3.5"
services:
web:
container_name: "bonfire_web"
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "20"
build:
context: .
dockerfile: "Dockerfile.dev"
args:
- ELIXIR_DOCKER_IMAGE=${ELIXIR_DOCKER_IMAGE}
ports:
- "4000:${SERVER_PORT}"
# - "${SERVER_PORT}:${SERVER_PORT}" # commented temporarily
env_file:
- config/dev/.env
environment:
- POSTGRES_HOST=db
- SEARCH_MEILI_INSTANCE=http://search:7700
# - GRAPH_DB_URL=bolt://graph:7687 # commented temporarily
depends_on:
- db
# - condition: service_healthy
# - search
# - graph
volumes:
# - /etc/passwd:/etc/passwd:ro
- type: bind
source: .
target: /opt/app
# do not mount the following:
# - /opt/app/_build
# - /opt/app/assets/node_modules
- /opt/app/data/postgres
- /opt/app/data/search
stdin_open: true # like docker run -i
tty: true # like docker run -t
user: $UID:$GID
db:
image: ${DB_DOCKER_IMAGE}
volumes:
- db-data:/var/lib/postgresql/data
# - ./data/postgres/dev:/var/lib/postgresql/data:z
# - /etc/passwd:/etc/passwd:ro
ports:
- "5432:5432"
env_file:
- config/dev/.env
# user: $UID:$GID
# shm_size: 500
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
search:
profiles:
- search
image: getmeili/meilisearch:v1
ports:
- "7700:7700"
volumes:
- "search-data:/meili_data"
# - "./data/search/dev:/meili_data"
# - /etc/passwd:/etc/passwd:ro
env_file:
- config/dev/.env
# user: $UID:$GID
proxy:
profiles:
- proxy
links:
- web
image: "caddy:alpine"
restart: always
ports:
- "80:80"
- "443:443"
- "443:443/udp"
env_file:
- config/dev/.env
volumes:
- caddy_data:/data
- caddy_config:/config
- type: bind
source: ${PROXY_CADDYFILE_PATH}
target: /etc/caddy/Caddyfile
read_only: true
- type: bind
source: ./data/uploads
target: /frontend/uploads
graph:
profiles:
- graph
image: memgraph/memgraph-platform
entrypoint: ["/usr/bin/supervisord"]
ports:
- "7687:7687"
- "3000:3000"
- "7444:7444"
volumes:
- mg_lib:/var/lib/memgraph
- mg_log:/var/log/memgraph
- mg_etc:/etc/memgraph
# materialize:
# profiles:
# - graph
# image: materialize/materialized
# ports:
# - "6875:6875"
# - "6876:6876"
# volumes:
# - mzdata:/mzdata
volumes:
db-data:
search-data:
caddy_data:
# external: true
caddy_config:
mg_lib:
mg_log:
mg_etc:
# mzdata:
networks:
default:
external: ${DOCKER_EXT_NETWORK_BOOL}
name: ${DOCKER_EXT_NETWORK}