starting to install diesel

This commit is contained in:
2023-10-08 02:07:39 +02:00
parent 467f7b4b1d
commit 22ea7cab3d
7 changed files with 183 additions and 8 deletions

16
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3'
services:
db:
image: postgres:13 # or whichever version you prefer
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: miniweb
POSTGRES_USER: miniweb
POSTGRES_PASSWORD: miniweb
ports:
- "5432:5432"
volumes:
postgres_data: