Files
vod-system/docker-compose.yml

17 lines
315 B
YAML

version: '3.8'
services:
postgres:
image: postgres:15
container_name: my_postgres
environment:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
POSTGRES_DB: mydb
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: