auth/docker-compose.yml

45 lines
874 B
YAML
Raw Normal View History

2022-12-15 09:59:45 +00:00
version: '3.8'
services:
2023-02-28 09:46:03 +00:00
v3-auth-api:
container_name: v3-auth-api
2022-12-15 09:59:45 +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:26 +00:00
- ${SERVICE_PORT:-5002}:${SERVICE_PORT:-5002}
2023-04-04 08:14:41 +00:00
- ${HEALTH_SERVICE_PORT:-6002}:${HEALTH_SERVICE_PORT:-6002}
2022-12-15 09:59:45 +00:00
networks:
2022-12-16 15:46:14 +00:00
v3-network:
aliases:
- v3-auth-api
2022-12-15 09:59:45 +00:00
2023-02-28 09:46:03 +00:00
v3-auth-opa:
container_name: v3-auth-opa
image: ${OPA_IMAGE}
ports:
- 8181:8181
command:
2023-02-28 09:46:03 +00:00
- 'run'
- '--server'
- '--log-format=json-pretty'
- '--set=decision_logs.console=true'
- './policies/'
volumes:
- ./opa:/policies
networks:
v3-network:
aliases:
2023-02-28 09:46:03 +00:00
- v3-auth-opa
2022-12-15 09:59:45 +00:00
networks:
2022-12-16 15:46:14 +00:00
v3-network:
name: v3-network
2022-12-26 08:42:49 +00:00
external: true