configuration/docker-compose.yml

27 lines
544 B
YAML
Raw Normal View History

2023-01-25 14:16:13 +00:00
version: '3.8'
services:
2023-02-28 09:56:39 +00:00
v3-configuration-api:
container_name: v3-configuration-api
2023-01-25 14:16:13 +00:00
build:
dockerfile: Dockerfile
context: .
target: development
volumes:
- .:/usr/src/app
env_file:
- .env
command: npm run start:dev
ports:
- ${SERVICE_PORT:-5003}:${SERVICE_PORT:-5003}
2023-04-04 08:30:37 +00:00
- ${HEALTH_SERVICE_PORT:-6003}:${HEALTH_SERVICE_PORT:-6003}
2023-01-25 14:16:13 +00:00
networks:
v3-network:
aliases:
- v3-configuration-api
networks:
v3-network:
name: v3-network
external: true