possible to install sqlpage server on Raspberry pi ? #283
-
|
Hello |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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: