mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-16 05:54:01 +03:00
🐛 Bug Report: IPv6 only HOST
#206
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 @q-b on GitHub (Mar 14, 2025).
Reproduction steps
When setting the
HOSTenv var to[::]nodejs fails:When setting it to
::(no brackets) it seems to be happy (I did not test the service) but Caddy complains:Expected behavior
Actual Behavior
Version and Environment
latest v0.40.0 sha256:17079de410ddfccfe2d33b423cad76cb14b2757b77209ffe715aa33f0de68d97
Log Output
No response
@kmendell commented on GitHub (Mar 14, 2025):
If you try setting it with quotes around like this does it work?
HOST="::"@q-b commented on GitHub (Mar 14, 2025):
It does not.
@stonith404 commented on GitHub (Mar 14, 2025):
What's the reason you're trying to change the HOST inside the Docker container?
@q-b commented on GitHub (Mar 15, 2025):
I'm trying to rely only on IPv6. Not a strong requirement but it helps me to get some habits and uncover some bugs.
@stonith404 commented on GitHub (Mar 16, 2025):
It's not really recommended to change these environment variables inside the Docker container. If you really want to change such things I would recommend you to use the standalone installation or build your own Docker image.
@craigcabrey commented on GitHub (Apr 9, 2025):
@q-b I initially had the same problem. But Caddy listens on IPv6 & IPv4 by default, so make sure you're accessing Caddy on port 80, not the application on port 3000.