Rename podman-compose.yml to compose.yml for docker compatibility

This commit is contained in:
Zeph Levy 2025-12-05 12:49:29 +01:00
parent 6f692d7a5a
commit 3767438d67

16
compose.yml Normal file
View file

@ -0,0 +1,16 @@
services:
postgres:
image: docker.io/library/postgres:alpine
container_name: postgres
env_file:
- .env
ports:
- "5432:5432"
volumes:
- ./db/init.sql:/docker-entrypoint-initdb.d/init.sql:Z
- postgres_data:/var/lib/postgresql/data:Z
restart: unless-stopped
volumes:
postgres_data: