-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
59 lines (57 loc) · 1.76 KB
/
Copy pathdocker-compose-dev.yml
File metadata and controls
59 lines (57 loc) · 1.76 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
---
version: "3.4"
services:
fab:
build: ./
restart: always
env_file: "../env/.env"
volumes:
- ../env/config.py:/var/appbuilder/config.py
- ./:/var/appbuilder
- ncubed_flask_base:/var/lib/appbuilder/data
ports:
- 5000:5000
labels:
# Frontend
- "traefik.enable=true"
- "traefik.docker.network=netcube"
- "traefik.http.routers.fabdv.tls=true"
#- "traefik.http.routers.authentik.rule=Host(`${DNS_NAME}`)"
- "traefik.http.routers.fabdv.rule=Host(`fab.c0001.ncubed.io`)"
- "traefik.http.routers.fabdv.priority=10"
- "traefik.http.routers.fabdv.entrypoints=websecure"
- "traefik.http.services.fabdv.loadbalancer.server.port=5000"
- "traefik.http.middlewares.fabdv.headers.sslProxyHeaders.X-Forwarded-Proto=https"
- "traefik.http.routers.fabdv.middlewares=fabdv"
memgraph-platform:
restart: unless-stopped
image: "memgraph/memgraph-platform:latest"
ports:
- "7687:7687"
- "3000:3000"
- "7444:7444"
volumes:
- mg_lib:/var/lib/memgraph
- mg_log:/var/log/memgraph
- mg_etc:/etc/memgraph
- ./data:/etc/memgraph/data
environment:
- MEMGRAPH="--log-level=TRACE"
entrypoint: ["/usr/bin/supervisord"]
labels:
# Frontend
- "traefik.enable=true"
- "traefik.docker.network=netcube"
- "traefik.http.routers.memgraph.tls=true"
- "traefik.http.routers.memgraph.rule=Host(`memgraph.c0001.ncubed.io`)"
- "traefik.http.routers.memgraph.priority=10"
- "traefik.http.routers.memgraph.entrypoints=websecure"
- "traefik.http.services.memgraph.loadbalancer.server.port=3000"
volumes:
ncubed_flask_base:
mg_lib:
mg_log:
mg_etc:
networks:
fab-visualiser:
name: fab-visualiser