user/docker-compose.yml

27 lines
517 B
YAML
Raw Normal View History

2022-12-13 14:27:28 +00:00
version: '3.8'
services:
2023-02-28 10:19:28 +00:00
v3-user-api:
container_name: v3-user-api
2022-12-13 14:27:28 +00:00
build:
dockerfile: Dockerfile
context: .
target: development
volumes:
- .:/usr/src/app
env_file:
- .env
command: npm run start:dev
ports:
2023-01-06 13:37:49 +00:00
- ${SERVICE_PORT:-5001}:${SERVICE_PORT:-5001}
2023-04-04 08:17:57 +00:00
- ${HEALTH_SERVICE_PORT:-6001}:${HEALTH_SERVICE_PORT:-6001}
2022-12-13 14:27:28 +00:00
networks:
2022-12-15 16:14:50 +00:00
v3-network:
aliases:
- v3-user-api
2022-12-13 14:27:28 +00:00
networks:
2022-12-15 16:14:50 +00:00
v3-network:
name: v3-network
2022-12-26 08:45:20 +00:00
external: true