mirror of
https://github.com/KeyZox71/knl_meowscendence.git
synced 2025-08-14 04:22:54 +02:00
34 lines
720 B
YAML
34 lines
720 B
YAML
services:
|
|
user-api:
|
|
container_name: transcendence-api-user
|
|
build:
|
|
dockerfile: docker/api-base/Dockerfile
|
|
context: ../../
|
|
volumes:
|
|
- db-user:/db
|
|
networks:
|
|
- front
|
|
- back
|
|
- prom-exporter
|
|
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
|
|
- prom-exporter
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
- API_TARGET=auth
|
|
- JWT_SECRET=${JWT_SECRET}
|
|
restart: unless-stopped
|