auth with session

This commit is contained in:
2025-04-28 16:32:12 +03:30
parent c966f38236
commit fb750a0dc8
23 changed files with 900 additions and 81 deletions

View File

@@ -3,13 +3,15 @@ services:
image: postgres:17-alpine3.21
container_name: ${PROJECT_NAME}-pgsql
ports:
- "8090:5432"
- "8050:5432"
environment:
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- ./data:/var/lib/postgresql/data
profiles:
- server
# redis:
# image: redis:7-alpine3.21
@@ -24,5 +26,5 @@ services:
- "8080:8000"
volumes:
- ./laravel:/var/www/${PROJECT_NAME}
depends_on:
- postgres
profiles:
- server