Files
crm-server/docker-compose.yml
2025-11-18 13:53:28 +01:00

14 lines
320 B
YAML

services:
postgres:
image: postgres:16
container_name: postgres-db
restart: "no" # nebude sa spúšťať automaticky
environment:
POSTGRES_PASSWORD: heslo123
POSTGRES_DB: crm
POSTGRES_USER: admin
ports:
- "5432:5432"
volumes:
- ./postgres:/var/lib/postgresql/data