diff --git a/CloudronManifest.json b/CloudronManifest.json index 9af15e2..5c9a259 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -7,7 +7,7 @@ "contactEmail": "contact@ente.io", "website": "https://ente.io", "tagline": "Open source, end-to-end encrypted photo backup", - "version": "0.3.1", + "version": "0.3.2", "upstreamVersion": "git-main", "healthCheckPath": "/health", "httpPort": 3080, diff --git a/Dockerfile b/Dockerfile index 0ee7df2..e2aa8c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN go build -o /build/ente . FROM node:20-bookworm-slim AS web-builder ENV NEXT_PUBLIC_ENTE_ENDPOINT=ENTE_API_ORIGIN_PLACEHOLDER -ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=ENTE_ALBUMS_ORIGIN_PLACEHOLDER +ENV NEXT_PUBLIC_ENTE_ALBUMS_ENDPOINT=https://albums.localhost.invalid COPY --from=ente-source /src /ente WORKDIR /ente/web RUN apt-get update && \ diff --git a/start.sh b/start.sh index 849ddf5..5261e84 100755 --- a/start.sh +++ b/start.sh @@ -398,7 +398,6 @@ if [ -d "$WEB_RUNTIME_DIR" ]; then log INFO "Rewriting frontend endpoints for local deployment" FRONTEND_REPLACEMENTS=( "ENTE_API_ORIGIN_PLACEHOLDER|$API_ORIGIN" - "ENTE_ALBUMS_ORIGIN_PLACEHOLDER|$BASE_URL/albums" "https://api.ente.io|$API_ORIGIN" "https://accounts.ente.io|$BASE_URL/accounts" "https://auth.ente.io|$BASE_URL/auth"