initiate repo

This commit is contained in:
renaldybrada
2026-01-27 11:41:51 +07:00
commit ccf12a95b1
33 changed files with 8209 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
version: "3.9"
services:
postgres:
image: postgres:16
container_name: antrian_operasi
restart: unless-stopped
environment:
POSTGRES_USER: rssa
POSTGRES_PASSWORD: supersecret
POSTGRES_DB: antrian_operasi
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U rssa -d antrian_operasi"]
interval: 5s
timeout: 5s
retries: 5
volumes:
pgdata: