AeThex-Engine-Core/services/auth-service/docker-compose.yml
mrpiglr 190b6b2eab
Some checks are pending
Build AeThex Engine / build-windows (push) Waiting to run
Build AeThex Engine / build-linux (push) Waiting to run
Build AeThex Engine / build-macos (push) Waiting to run
Build AeThex Engine / create-release (push) Blocked by required conditions
Deploy Docsify Documentation / build (push) Waiting to run
Deploy Docsify Documentation / deploy (push) Blocked by required conditions
chore: sync local changes to Forgejo
2026-03-13 00:37:06 -07:00

25 lines
549 B
YAML

version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: aethex-postgres
environment:
POSTGRES_USER: aethex
POSTGRES_PASSWORD: aethex_dev
POSTGRES_DB: aethex_dev
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U aethex"]
interval: 5s
timeout: 5s
retries: 5
# Run auth-service locally with: npm run dev
# This docker-compose only runs the database
volumes:
postgres_data: