starting
This commit is contained in:
parent
8103be3c56
commit
43448cd80b
2 changed files with 59 additions and 0 deletions
30
docker-compose.yml
Normal file
30
docker-compose.yml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
app-db:
|
||||
image: postgres:17
|
||||
container_name: app-db
|
||||
environment:
|
||||
POSTGRES_USER: app
|
||||
POSTGRES_PASSWORD: app123
|
||||
POSTGRES_DB: app_db
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- app-db-data:/var/lib/postgresql/data
|
||||
|
||||
dw-db:
|
||||
image: postgres:17
|
||||
container_name: dw-db
|
||||
environment:
|
||||
POSTGRES_USER: dw
|
||||
POSTGRES_PASSWORD: dw123
|
||||
POSTGRES_DB: dw_db
|
||||
ports:
|
||||
- "5433:5432"
|
||||
volumes:
|
||||
- dw-db-data:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
app-db-data:
|
||||
dw-db-data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue