Login route, database compose file
Some checks failed
Build Backend and Frontend / Build & Test .NET Backend (push) Has been cancelled
Build Backend and Frontend / Build Frontend (push) Has been cancelled

This commit is contained in:
Simon Lübeß
2025-06-04 16:42:13 +02:00
parent efd69f63b0
commit a5727f0f51
5 changed files with 104 additions and 21 deletions

13
docker-compose.yml Normal file
View File

@ -0,0 +1,13 @@
# Use postgres/example user/password credentials
services:
db:
image: postgres
restart: always
# set shared memory limit when using docker compose
shm_size: 128mb
environment:
POSTGRES_USER: us-entry-agent-dev
POSTGRES_PASSWORD: example
ports:
- 5432:5432