initialize git, basic setup for crm

This commit is contained in:
richardtekula
2025-11-18 13:53:28 +01:00
commit da01d586fc
47 changed files with 12776 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
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