possible to install sqlpage server on Raspberry pi ? #283
Answered
by
lovasoa
schanthery
asked this question in
Q&A
|
Hello |
Answered by
lovasoa
Apr 6, 2024
Replies: 1 comment 2 replies
|
Hello and welcome to SQLPage ! SQLPage offers precompiled Docker images for ARM processors, making it the easiest way to use SQLPage with a Raspberry Pi. To set up Docker on an RPi, follow these steps:
curl -sSL https://get.docker.com | sh
sudo usermod -aG docker your_usernameReplace
docker run -it --name sqlpage -p 8080:8080 --volume "$(pwd):/var/www" --rm lovasoa/sqlpageThis command will start SQLPage in a Docker container, mapping port 80 of the container to port 80 of the Raspberry Pi.
references |
2 replies
Answer selected by
schanthery
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello and welcome to SQLPage !
SQLPage offers precompiled Docker images for ARM processors, making it the easiest way to use SQLPage with a Raspberry Pi. To set up Docker on an RPi, follow these steps:
curl -sSL https://get.docker.com | shReplace
your_usernamewith your actual username.Log out and log back in for the changes to take effect.
Once the image is pulled, you can run SQLPage as a Docker container using: