You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running any of the domain renew/add/delete commands it calls certbot container which is currently set to latest tag. This will fail on raspberry pi or other arm based devices.
Solution
We need to detect the architecture and set the tag to arm/arm64/latest. This should be a variable thats shared between all 3 commands with a switch statement triggering the correct tag. Can be done in the init function if one exists for domain model.
Steps to Reproduce the Problem
./server.bin -domain renew
./server.bin -domain add domain.com
./server.bin -domain delete
The text was updated successfully, but these errors were encountered:
Im actually not sure what happens since we dont use the "latest" tag, I wonder what docker does when its a different arch. Im going to push this to a future milestone since there is no way for me to test this atm since i have no pi.
Problem
When running any of the domain renew/add/delete commands it calls certbot container which is currently set to
latest
tag. This will fail on raspberry pi or other arm based devices.Solution
We need to detect the architecture and set the tag to
arm
/arm64
/latest
. This should be a variable thats shared between all 3 commands with a switch statement triggering the correct tag. Can be done in the init function if one exists for domain model.Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: