chore(dev): add docker-compose with postgres
This commit is contained in:
parent
e9056dcfbc
commit
1ebb4936ea
1 changed files with 11 additions and 0 deletions
11
docker-compose.yaml
Normal file
11
docker-compose.yaml
Normal file
|
@ -0,0 +1,11 @@
|
|||
version: '3.1'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_USER: short
|
||||
POSTGRES_PASSWORD: short
|
||||
ports:
|
||||
- 5432:5432
|
Loading…
Reference in a new issue