This commit is contained in:
Bernd Heidemann 2024-09-03 15:01:50 +02:00
commit 93d4cf863f
29 changed files with 1143 additions and 0 deletions

View file

@ -0,0 +1,18 @@
version: '3'
volumes:
lf8_starter_postgres_data:
driver: local
services:
postgres_for_lf8_starter:
container_name: lf8_starter_postgres_container
image: postgres:16.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"