chore(dev): add docker-compose with postgres

This commit is contained in:
Bastien Riviere 2024-01-29 18:35:46 +01:00
parent e9056dcfbc
commit 1ebb4936ea
Signed by: babariviere
GPG key ID: 4E5F0839249F162E

11
docker-compose.yaml Normal file
View 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