likwid/compose/dev.yml
Marco Allegretti a6eefd792a compose: modify 5 files
Verified changes:
- modify compose/.env.demo.example
- modify compose/.env.production.example
- modify compose/demo.yml
- modify compose/dev.yml
- modify compose/production.yml

Diffstat:
- 5 files changed, 13 insertions(+), 5 deletions(-)
2026-01-29 00:40:11 +01:00

17 lines
360 B
YAML

version: "3.9"
services:
postgres:
image: postgres:16
container_name: likwid-postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: ${POSTGRES_USER:-likwid}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-likwid}
POSTGRES_DB: ${POSTGRES_DB:-likwid}
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: