First commit

This commit is contained in:
2024-05-04 00:45:40 +02:00
commit 38fd45d3b2

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
postgres16:
image: "postgres:16-alpine"
container_name: "Postgres16"
hostname: "postgres16"
restart: "unless-stopped"
user: "10201:10201"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "/run/postgresql:/run/postgresql:rw"
- "/data/docker/postgres16-prod-1/db-data:/var/lib/postgresql/data:rw"