base service with authentication and user creation

This commit is contained in:
2025-12-14 17:30:08 +01:00
commit fe38d42a9e
5 changed files with 110 additions and 0 deletions

6
run_db.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env sh
podman build -t chatapp-db ./db
podman run --replace -d \
--name chatapp-db \
-p 5432:5432 \
chatapp-db