mirror of
https://github.com/Kugelschieber/docker.git
synced 2026-05-17 00:41:23 +00:00
15 lines
262 B
YAML
15 lines
262 B
YAML
volumes:
|
|
postgres_data:
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:18
|
|
container_name: postgres
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|