1133557a62
Change was made live on the build server on 20260701 and is now captured in git per the no-drift rule. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
308 B
YAML
16 lines
308 B
YAML
services:
|
|
db:
|
|
image: postgres:18-alpine
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: lms_user
|
|
POSTGRES_PASSWORD: lms_password
|
|
POSTGRES_DB: lms_db
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql
|
|
|
|
volumes:
|
|
postgres_data:
|