Files
knl_meowscendence/docker/api-base/compose.yml

32 lines
668 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