58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
api:
|
|
container_name: v3-configuration
|
|
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}
|
|
depends_on:
|
|
- db
|
|
networks:
|
|
v3-network:
|
|
aliases:
|
|
- v3-configuration-api
|
|
|
|
db:
|
|
container_name: v3-configuration-db
|
|
image: ${POSTGRES_IMAGE}
|
|
environment:
|
|
POSTGRES_DB: configuration
|
|
POSTGRES_USER: configuration
|
|
POSTGRES_PASSWORD: configuration
|
|
ports:
|
|
- 5503:5432
|
|
volumes:
|
|
- .postgresql:/var/lib/postgresql/data:rw
|
|
networks:
|
|
v3-network:
|
|
aliases:
|
|
- v3-configuration-db
|
|
|
|
db-test:
|
|
container_name: v3-configuration-db-test
|
|
image: ${POSTGRES_IMAGE}
|
|
environment:
|
|
POSTGRES_DB: configuration
|
|
POSTGRES_USER: configuration
|
|
POSTGRES_PASSWORD: configuration
|
|
ports:
|
|
- 5603:5432
|
|
networks:
|
|
v3-network:
|
|
aliases:
|
|
- v3-configuration-db-test
|
|
|
|
networks:
|
|
v3-network:
|
|
name: v3-network
|
|
external: true
|