feat: support configurable CORS proxy server (#383)

This commit is contained in:
Daniel Vergara 2025-06-13 23:16:02 -06:00 committed by GitHub
parent 34a680ae24
commit b4f972dcbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 32 additions and 3 deletions

View file

@ -6,6 +6,23 @@ services:
build:
context: .
dockerfile: Dockerfile
args:
VITE_PROXY_SERVER: http://localhost:8090
ports:
- "8089:80"
restart: unless-stopped
networks:
- jumble
proxy-server:
image: ghcr.io/danvergara/jumble-proxy-server:latest
environment:
- ALLOW_ORIGIN=http://localhost:8089
- PORT=8080
ports:
- "8090:8080"
networks:
- jumble
networks:
jumble: