hexabot/docker/docker-compose.dev.yml

55 lines
1.2 KiB
YAML
Raw Normal View History

2024-09-10 09:50:11 +00:00
version: "3.8"
services:
database-init:
build:
context: ../api
pull_policy: build
2024-09-10 09:50:11 +00:00
volumes:
- ../api/src:/app/src
- ../api/migrations:/app/migrations
# - ../api/node_modules:/app/node_modules
api:
build:
context: ../api
pull_policy: build
2024-09-10 09:50:11 +00:00
ports:
- ${API_PORT}:3000
- 9229:9229 # vscode debug port
volumes:
- ../api/src:/app/src
- ../api/migrations:/app/migrations
#- ../api/node_modules:/app/node_modules
command: ["npm", "run", "start:debug"]
mongo-express:
container_name: mongoUi
image: mongo-express:1-20
restart: always
ports:
- ${APP_MONGO_EXPRESS_PORT}:8081
networks:
- db-network
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: ${MONGO_USER}
ME_CONFIG_MONGODB_ADMINPASSWORD: ${MONGO_PASSWORD}
ME_CONFIG_MONGODB_URL: ${MONGO_URI}
hexabot-frontend:
container_name: frontend
build:
context: ../
dockerfile: ./frontend/Dockerfile
pull_policy: build
2024-09-10 09:50:11 +00:00
widget:
build:
context: ../widget
2024-09-10 09:50:11 +00:00
target: development
pull_policy: build
2024-09-10 09:50:11 +00:00
volumes:
- ../widget/src:/app/src
ports:
- ${APP_WIDGET_PORT}:5173