-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.dev.yml
52 lines (46 loc) · 1.04 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
version: '3.9'
services:
shell:
build: bin
env_file:
- .env.dev
volumes:
- .:/usr/src
stemmarest:
image: dhuniwien/stemmarest:latest
ports:
- "8080:8080"
stemmarest-initializer:
build: bin
env_file:
- .env.dev
depends_on:
- stemmarest
volumes:
- ./bin/init-data/stemmarest/:/init-data
entrypoint: >
/bin/bash -c "./wait-for-it.sh --host=${STEMMAREST_HOST} --port=${STEMMAREST_PORT} -- /init-data/init_test_data.sh"
stemweb:
container_name: stemweb
build: stemweb_mock
ports:
- "8000:8000"
stemmaweb:
container_name: stemmaweb
build:
context: .
dockerfile: Dockerfile-dev
volumes:
- .:/usr/src
env_file:
- .env.dev
entrypoint: >
/bin/bash -c "make install-middleware &&
make install-frontend &&
tail -F just-forcing-the-container-to-keep-running"
reverse-proxy:
build: ./reverse-proxy
depends_on:
- stemmaweb
ports:
- "8888:80"