Skip to content
Discussion options

You must be logged in to vote

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 -d

After that, open it in your browser at:

http://<raspberry_pi_ip>:3000

If it doesn’t start, double-check you’re on 64-bit OS Docker won’t work properly on 32-bit.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@KevMacD
Comment options

Answer selected by KevMacD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants