Initial Spring Boot backend setup with PostgreSQL and Flyway

This commit is contained in:
litoral05
2026-05-07 13:22:03 +01:00
commit b2d4da82d4
12 changed files with 712 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
services:
postgres:
image: postgres:16
environment:
POSTGRES_DB: vpn_provisioner
POSTGRES_USER: vpn
POSTGRES_PASSWORD: vpnpassword
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: