This repository has been archived on 2026-05-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vpn-provisioner/docker-compose.yml
T

17 lines
279 B
YAML

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: