mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
15 lines
274 B
YAML
15 lines
274 B
YAML
# docker-compose.yml
|
|
version: '3'
|
|
services:
|
|
database:
|
|
image: "postgres:15"
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/postgresql/data/
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
volumes:
|
|
db:
|