ADD vodController to take POST request

This commit is contained in:
2025-05-05 19:32:06 +02:00
parent 34811fd981
commit 9f9e8251f9
5 changed files with 85 additions and 7 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
postgres:
image: postgres:15
container_name: my_postgres
environment:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
POSTGRES_DB: mydb
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: