15 lines
355 B
YAML
15 lines
355 B
YAML
version: '3.1'
|
|
services:
|
|
db:
|
|
image: ghcr.io/dbsystel/postgresql-partman:15-5
|
|
restart: "always"
|
|
environment:
|
|
POSTGRESQL_PASSWORD: mypassword
|
|
POSTGRESQL_DATABASE: tycho_indexer_0
|
|
POSTGRESQL_USERNAME: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
volumes:
|
|
postgres_data: |