API url not replaced in docker image :latest tag #1745

Closed
opened 2026-03-22 13:33:58 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @martadinata666 on GitHub (Nov 22, 2021).

The run.sh in docker image :latest tag fail to replace API_URL in index.html. The API_URL stay at /api/v1, vice versa in :unstable tag the API URL replaced correctly.
Compose file exact same:

version: "3.5"
services: 
  frontend:
    image: vikunja/frontend:latest
    ports:
      - 80:80
    environment:
      VIKUNJA_API_URL: http://192.168.0.22:3456/api/v1
    restart: unless-stopped

version: "3.5"
services: 
  frontend:
    image: vikunja/frontend:unstable
    ports:
      - 80:80
    environment:
      VIKUNJA_API_URL: http://192.168.0.22:3456/api/v1
    restart: unless-stopped

Originally created by @martadinata666 on GitHub (Nov 22, 2021). The `run.sh` in docker image `:latest` tag fail to replace API_URL in index.html. The API_URL stay at `/api/v1`, vice versa in `:unstable` tag the API URL replaced correctly. Compose file exact same: ``` version: "3.5" services: frontend: image: vikunja/frontend:latest ports: - 80:80 environment: VIKUNJA_API_URL: http://192.168.0.22:3456/api/v1 restart: unless-stopped ``` ``` version: "3.5" services: frontend: image: vikunja/frontend:unstable ports: - 80:80 environment: VIKUNJA_API_URL: http://192.168.0.22:3456/api/v1 restart: unless-stopped ```
GiteaMirror added the bug label 2026-03-22 13:33:58 -05:00
Author
Owner

@kolaente commented on GitHub (Nov 23, 2021):

I've just released 0.18.2 which contains a fix for this. Announcement blog post here

@kolaente commented on GitHub (Nov 23, 2021): I've just released 0.18.2 which contains a fix for this. [Announcement blog post here](https://vikunja.io/blog/2021/11/vikunja-0.18.2-is-released/)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#1745