initialize git, basic setup for crm
This commit is contained in:
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user