mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
[Error]“You need to enable JavaScript to run this app” #483
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ljyfree on GitHub (Apr 16, 2024).
@daniel-hiller commented on GitHub (Apr 16, 2024):
BASE_URL=http://localhost:56789
Is only working if you are accessing planka from the same machine, docker is running on.
Normally docker is running on a remote host, so change it to the IP or hostname of the docker host
Example:
BASE_URL=http://192.168.0.33:56789
Or
BASE_URL=http://my-docker-host:56789
@ljyfree commented on GitHub (Apr 16, 2024):
@daniel-hiller
It works.Thanks so much.