Files
keyvault/api/docker-compose.yml
Bastian Wagner acac0adbdf compose
2024-09-12 15:36:58 +02:00

28 lines
620 B
YAML

version: "3.8"
services:
api:
container_name: 'keyvault_pro_api'
build:
dockerfile: Dockerfile
context: .
# Only will build development stage from our dockerfile
target: development
# volumes:
# - .:/api/src/app
# - /api/src/app/node_modules
# - beantastic_upload_volume:/api/src/app/uploads
command: npm run start:dev
ports:
- 4000:4000
# debugging port
# - 9229:9229
# networks:
# - database_network
# env_file:
# - .env
# networks:
# database_network:
# external: true
# volumes:
# beantastic_upload_volume: