gonito-frontend/docker-compose.yml

18 lines
410 B
YAML
Raw Normal View History

2022-10-21 11:17:05 +02:00
version: '3.7'
services:
2022-10-21 15:13:19 +02:00
gonito:
container_name: gonito_frontend
2022-10-21 11:17:05 +02:00
build:
context: .
dockerfile: Dockerfile
ports:
2022-10-21 15:13:19 +02:00
- 3000:3000
2022-10-21 11:17:05 +02:00
environment:
2022-10-21 15:13:19 +02:00
- CHOKIDAR_USEPOLLING=true
- REACT_APP_KC_URL=${REACT_APP_KC_URL}
- REACT_APP_KC_REALM=${REACT_APP_KC_REALM}
2022-11-29 13:59:11 +01:00
- REACT_APP_KC_CLIENT_ID=${REACT_APP_KC_CLIENT_ID}
volumes:
- .:/app
- /app/node_modules