-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
45 lines (41 loc) · 1.02 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
version: "3.8"
networks:
default:
external: true
name: quay_default
services:
# Not need for local development
# quay-service-tool-auth:
# container_name: "quay-service-tool-auth"
# image: jboss/keycloak
# ports:
# - '8081:8080'
# environment:
# - KEYCLOAK_USER=admin
# - KEYCLOAK_PASSWORD=password
quay-service-tool-api:
container_name: "quay-service-tool-api"
build: ./backend
command: --reload # Appends to entrypoint - enables hot-reloading
volumes:
- ./backend:/backend
environment:
ENV: development
DEBUG: "True"
PYTHONUNBUFFERED: "True"
CONFIG_PATH: /backend/config
IS_LOCAL: "True"
quay-service-tool-client:
container_name: "quay-service-tool-client"
build: ./frontend
volumes:
- './frontend:/usr/src/app'
ports:
- '9000:9000'
depends_on:
- quay-service-tool-api
env_file:
- ./frontend/.env
environment:
- NODE_ENV=development
- TARGET_URL=http://quay-service-tool-api:5000