mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-21 23:42:45 +01:00
19 lines
375 B
YAML
19 lines
375 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:14
|
|
container_name: "phantom-panel-postgres"
|
|
ports:
|
|
- "127.0.0.1:9402:5432"
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: development
|
|
POSTGRES_DB: postgres
|
|
|
|
volumes:
|
|
postgres:
|
|
name: "phantom-panel-postgres"
|