This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
LF8/docker/local/docker-compose.yml
Renovate 29abe1c5ca
Some checks failed
Quality Check / Checkstyle Main (pull_request) Successful in 1m36s
Quality Check / Tests (pull_request) Failing after 2m33s
Build PR / Build and analyze (pull_request) Failing after 3m8s
chore(deps): update all non-major dependencies
2025-03-28 18:04:38 +00:00

18 lines
No EOL
403 B
YAML

version: '3'
volumes:
lf8_starter_postgres_data:
driver: local
services:
postgres_for_lf8_starter:
container_name: lf8_starter_postgres_container
image: postgres:17.4
volumes:
- lf8_starter_postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: lf8_starter_db
POSTGRES_USER: lf8_starter
POSTGRES_PASSWORD: secret
ports:
- "5432:5432"