Files
knl_meowscendence/docker/api-base/compose.yml
2025-07-22 17:36:34 +02:00

32 lines
676 B
YAML

services:
user-api:
container_name: transcendence-api-user
build:
dockerfile: docker/api-base/Dockerfile
context: ../../
volumes:
- db-user:/db
networks:
- front
- back
environment:
- TZ=Europe/Paris
- API_TARGET=user
- JWT_SECRET=${JWT_SECRET}
restart: unless-stopped
auth-api:
container_name: transcendence-api-auth
build:
dockerfile: docker/api-base/Dockerfile
context: ../../
volumes:
- db-auth:/db
networks:
- front
- back
environment:
- TZ=Europe/Paris
- API_TARGET=auth
- JWT_SECRET=${JWT_SECRET}
restart: unless-stopped