Delete docker-compose/postgres/docker-compose.yaml

This commit is contained in:
Christian Lempa 2024-03-26 12:03:15 +01:00 committed by GitHub
parent e4d8eb6902
commit f24e70acfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +0,0 @@
---
services:
postgres:
image: postgres:16.2
container_name: postgres
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
# (Optional) when creating a new database
# - POSTGRES_DB=${POSTGRES_DB}
ports:
- 5432:5432
volumes:
- postgres-data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres-data: