19 lines
504 B
YAML
19 lines
504 B
YAML
|
|
version: "3.9"
|
|
|
|
services:
|
|
agologum-api:
|
|
image: git.vxbard.net/homeburger/agologum-api:latest
|
|
container_name: agologum-api
|
|
restart: always
|
|
environment:
|
|
ConnectionStrings__DefaultConnection: Host=agologum-db;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}
|
|
Jwt__Key: ${JWT_SECRET} # must export the secret as a variable in the ci script
|
|
ports:
|
|
- "5000:5000"
|
|
networks:
|
|
- agologum-net
|
|
|
|
networks:
|
|
agologum-net:
|
|
external: true |