initial commit

This commit is contained in:
SowinskiBraeden committed 2026-07-05 16:54:59 -07:00
commit ce8f719a05
106 files changed
+24584

No files matched your search

+22
View File
@@ -0,0 +1,22 @@
services:
postgres:
image: postgres:16-alpine
container_name: reforger-panel-postgres
restart: unless-stopped
environment:
POSTGRES_USER: reforger
POSTGRES_PASSWORD: reforger
POSTGRES_DB: reforger_panel
ports:
# Host port 5433 to avoid clashing with any locally installed Postgres.
- '127.0.0.1:5433:5432'
volumes:
- postgres-data:/var/lib/postgresql/data
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U reforger -d reforger_panel']
interval: 5s
timeout: 3s
retries: 10
volumes:
postgres-data: