12 lines
348 B
YAML
12 lines
348 B
YAML
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"
|