Display auth data, fix login container

This commit is contained in:
lumijiez
2025-06-04 18:03:21 +03:00
parent 2fbc789724
commit 59b7636c60
4 changed files with 186 additions and 13 deletions

View File

@@ -21,8 +21,9 @@ services:
working_dir: /app
volumes:
- ./webui:/app
expose:
- "3000"
- /app/node_modules
ports:
- "3000:3000"
environment:
- NODE_ENV=development
- AUTH0_SECRET=${AUTH0_SECRET}
@@ -35,10 +36,11 @@ services:
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_AUTH0_CLIENT_ID=${NEXT_PUBLIC_AUTH0_CLIENT_ID}
- NEXT_PUBLIC_AUTH0_DOMAIN=${NEXT_PUBLIC_AUTH0_DOMAIN}
command: "sh -c 'npm install && npm run dev'"
command: sh -c "npm install && npm run dev"
networks:
- app-network
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
container_name: sqlserver