mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-06-25 07:27:42 +00:00
18 lines
336 B
YAML
18 lines
336 B
YAML
version: "3.9"
|
|||
|
|||
services:
|
|||
postgres:
|
|||
image: postgres:16
|
|||
container_name: likwid-postgres
|
|||
ports:
|
|||
- "5432:5432"
|
|||
environment:
|
|||
POSTGRES_USER: ${POSTGRES_USER}
|
|||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|||
POSTGRES_DB: ${POSTGRES_DB}
|
|||
volumes:
|
|||
- pgdata:/var/lib/postgresql/data
|
|||
|
|||
volumes:
|
|||
pgdata:
|