-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.develop.yml
More file actions
34 lines (30 loc) · 884 Bytes
/
docker-compose.develop.yml
File metadata and controls
34 lines (30 loc) · 884 Bytes
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
x-zou-develop: &zou-develop
image: zou-dev
build:
context: .
dockerfile: ./zou/Dockerfile.zou-dev
volumes:
- ./zou-dev:/zou-dev:ro
services:
kitsu:
image: kitsu-dev
build:
context: .
dockerfile: ./kitsu/Dockerfile.kitsu-dev
volumes:
- ./kitsu-dev/public:/app/public:ro
- ./kitsu-dev/scripts:/app/scripts:ro
- ./kitsu-dev/src:/app/src:ro
- ./kitsu-dev/tests:/app/tests:ro
environment:
- KITSU_API_TARGET=http://zou-app:5000
- KITSU_EVENT_TARGET=http://zou-event:5001
ports:
- "${DEV_PORT:-8080}:8080"
zou-app:
<<: *zou-develop
command: "flask run --no-reload --host=0.0.0.0"
zou-event:
<<: *zou-develop
zou-jobs:
<<: *zou-develop