-
|
I have tried following the instructions on the GIT page to get Docker running, but I have not had any luck. Any step by step instructions? |
Beta Was this translation helpful? Give feedback.
Answered by
InlitX
Feb 10, 2026
Replies: 1 comment 1 reply
-
|
Yes on Raspberry Pi the easiest way is to use Docker directly, not build anything manually. Make sure you are on Raspberry Pi OS 64-bit. Then do: # install docker
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER
newgrp docker
# install docker compose
sudo apt update
sudo apt install docker-compose-plugin
# clone and run
git clone https://github.com/accius/openhamclock.git
cd openhamclock
docker compose up -dAfter that, open it in your browser at: If it doesn’t start, double-check you’re on 64-bit OS Docker won’t work properly on 32-bit. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KevMacD
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes on Raspberry Pi the easiest way is to use Docker directly, not build anything manually.
Make sure you are on Raspberry Pi OS 64-bit. Then do:
After that, open it in your browser at:
If it doesn’t start, double-check you’re on 64-bit OS Docker won’t work properly on 32-bit.