fix: Use Pi IP instead of localhost
All checks were successful
Deploy Development / deploy (push) Successful in 32s

This commit is contained in:
Lars 2026-04-21 16:24:43 +02:00
parent 495cebd915
commit b1c5999f6e

View File

@ -34,8 +34,8 @@ services:
SMTP_USER: ${SMTP_USER}
SMTP_PASS: ${SMTP_PASS}
SMTP_FROM: ${SMTP_FROM}
APP_URL: http://localhost:3098
ALLOWED_ORIGINS: http://localhost:3098,http://192.168.2.49:3098
APP_URL: http://192.168.2.49:3098
ALLOWED_ORIGINS: http://192.168.2.49:3098
ENVIRONMENT: development
volumes:
- dev-shinkan-media:/app/media
@ -52,7 +52,7 @@ services:
context: ./frontend
dockerfile: Dockerfile
args:
VITE_API_URL: http://localhost:8098/api
VITE_API_URL: http://192.168.2.49:8098/api
container_name: dev-shinkan-ui
ports:
- "3098:80"