hostname for services is not inferred correctly in the Docker context #80
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?
When running inside a Docker container,
threetwo-uiis not reading theUNDERLYING_HOSTNAMEcorrectly from the supplieddocker-compose.envfile. This causes a lot of API calls to fail since they fallback tolocalhost. This has to do with how Vite handles environment variables (https://stackoverflow.com/a/73534387/656708)The possible solution is to prefix the environment variables with
VITE_wherever they are used in the UI