Add flyway initial schema and database setup

This commit is contained in:
litoral05
2026-05-05 10:04:51 +01:00
parent 5dd2c479c7
commit 2b74db43dd
4 changed files with 47 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
services:
postgres:
image: postgres:16
container_name: lr-openvpn-postgres
environment:
POSTGRES_DB: lr_openvpn
POSTGRES_USER: lr_openvpn
POSTGRES_PASSWORD: lr_openvpn_dev
ports:
- "5432:5432"
volumes:
- ./postgres-data:/var/lib/postgresql/data