modified: README.md
new file: beloit/menu.png
new file: clay/menu.png
new file: docker.sh
new file: docker/Dockerfile
new file: docker/entrypoint.sh
new file: index.html
new file: setup.sh
new file: st_marys/menu.png
new file: startup.sh
16 lines
568 B
Bash
16 lines
568 B
Bash
sudo wget -O /startup.sh https://raw.githubusercontent.com/stenny94/kiosk-menu/refs/heads/main/startup.sh
|
|
sudo chmod a+x /startup.sh
|
|
|
|
docker rm -f kiosk-menu
|
|
|
|
echo ""
|
|
echo ""
|
|
echo "--------------------------------------------------"
|
|
read -p "Please enter your store location (e.g., clay, beloit, st_marys): " STORELOCATION < /dev/tty
|
|
echo "Setting location to: $STORELOCATION"
|
|
echo "--------------------------------------------------"
|
|
echo ""
|
|
echo ""
|
|
|
|
docker run -d -p 8080:80 --name kiosk-menu --restart=always -e LOCATION="$STORELOCATION" stenny94/kiosk-menu:latest
|