Files
fakemoney/server/compose.yml
2026-03-06 00:57:19 +01:00

18 lines
376 B
YAML

services:
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: pass
ports:
- "5432:5432"
adminer:
image: adminer
restart: always
environment:
ADMINER_DEFAULT_SERVER: postgres # Automatically connect to the "postgres" service
ports:
- "8080:8080"
depends_on:
- postgres # Ensure PostgreSQL starts first