Files
billing/docker-compose.yml
Ruslan Bakiev 911a289a11
All checks were successful
Build Docker Image / build (push) Successful in 1m38s
Add Infisical env vars to docker-compose
2026-01-07 09:59:57 +07:00

47 lines
1.1 KiB
YAML

services:
billing:
image: gitea.dsrptlab.com/optovia/billing/billing:latest
container_name: billing
restart: unless-stopped
expose:
- "8000"
environment:
- PORT=8000
- TB_CLUSTER_ID=0
- TB_ADDRESS=tigerbeetle:3000
- INFISICAL_API_URL=${INFISICAL_API_URL}
- INFISICAL_ENV=${INFISICAL_ENV}
- INFISICAL_PROJECT_ID=${INFISICAL_PROJECT_ID}
- INFISICAL_CLIENT_ID=${INFISICAL_CLIENT_ID}
- INFISICAL_CLIENT_SECRET=${INFISICAL_CLIENT_SECRET}
security_opt:
- seccomp=unconfined
depends_on:
- tigerbeetle
networks:
dokploy-network:
aliases:
- billing
tigerbeetle:
image: ghcr.io/tigerbeetle/tigerbeetle:latest
container_name: tigerbeetle
privileged: true
command: ["start", "--addresses=0.0.0.0:3000", "--development", "/var/lib/tigerbeetle/0_0.tigerbeetle"]
expose:
- "3000"
volumes:
- tigerbeetle_data:/var/lib/tigerbeetle
restart: unless-stopped
networks:
dokploy-network:
aliases:
- tigerbeetle
volumes:
tigerbeetle_data:
networks:
dokploy-network:
external: true