mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-12 09:54:16 -05:00
Pangolin Docker Container permanently restarting #141
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 @TheRealSaeba on GitHub (Mar 12, 2025).
Ubuntu 24.02. on VPS
After running the installation script, the installation finishes with "container unhealthy".
After restarting the VPS, executing "docker ps" command shows that the pangolin container is permanently restarting.
After executing "docker logs pangolin" command, I get hundreds of similar entries like this:
It seems like the password I entered during installation contained characters ( the backslash?) which are not correctly handled or interpreted as escape sequence and not as the character itself.
The installation guide states that at least one "special character" should be used for the password. It does not exclude certain characters.
I will try deinstalling all docker containers and running the installation script with a password that does not contain the backslash.
@miloschwartz commented on GitHub (Mar 12, 2025):
Ah okay yeah I can see how the backslash would cause an issue here. You don't have to re run the installer to fix this. Instead you can edit the config file and change the password since the installer already set everything up for you.
@TheRealSaeba commented on GitHub (Mar 12, 2025):
Thank you for the quick response. I will figure out how to do this :)