-
Notifications
You must be signed in to change notification settings - Fork 2
/
compose.dev.yml
53 lines (53 loc) · 1.29 KB
/
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
# Compose file for development setup
# Usage: docker compose -f compose.dev.yml up
# or: docker compose -f compose.yml -f compose.dev.yml up
name: dracor-dev
services:
api:
image: dracor/api-dev
build:
context: .
dockerfile: Dockerfile
args:
- FUSEKI_SECRET=qwerty
- GITHUB_WEBHOOK_SECRET=qwerty
environment:
# override default API base with frontend proxy
- DRACOR_API_BASE=http://localhost:8088/api/v1
# set an empty password
- EXIST_PASSWORD=
ports:
- 8080:8080
# volumes:
# - existdata:/opt/exist/data
depends_on:
- fuseki
- metrics
fuseki:
image: dracor/fuseki
build: https://github.com/dracor-org/dracor-fuseki.git#main
environment:
- ADMIN_PASSWORD=qwerty
ports:
- 3030:3030
volumes:
- fusekidata:/fuseki
metrics:
image: dracor/metrics
build: https://github.com/dracor-org/dracor-metrics.git#main
ports:
- 8030:8030
frontend:
image: dracor/frontend
build: https://github.com/dracor-org/dracor-frontend.git#main
environment:
NGINX_RESOLVER: "127.0.0.11"
DRACOR_API_HOST: http://api:8080
DRACOR_API_PREFIX: /exist/restxq/v1
ports:
- 8088:80
depends_on:
- api
volumes:
# existdata:
fusekidata: