likwid/compose/dev.yml
Marco Allegretti 614dfd27f2 compose: modify 1 file
Verified changes:
- modify compose/dev.yml

Diffstat:
- 1 file changed, 17 insertions(+), 17 deletions(-)
2026-02-02 10:44:34 +01:00

17 lines
387 B
YAML

version: "3.9"
services:
postgres:
image: postgres:16
container_name: likwid-postgres
ports:
- "127.0.0.1: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: