phpgui
applejuice client as webui
5.8K
appleJuice Client GUI geschrieben in PHP.
Es wird mindestens PHP 8.2 benötigt!
Die Datei .env.dist kopieren, zu .env umbenennen und mit einem Texteditor die gewünschte Konfiguration vornehmen.
| Variable | Value | Description |
|---|---|---|
CORE_HOST | http://192.168.2.1 | IP/HOST where Core is running, with scheme |
CORE_PORT | 9851 | Core XML Port |
GUI_LANGUAGE | de | de or en |
GUI_SHOW_NEWS | 1 | show news on status page |
GUI_SHOW_SHARE | 1 | show share stats on status page |
NEWS_URL | http://XY | url where to get news from |
SERVERLIST_URL | http://ABC | url where to find new servers |
REL_INFO | http://MN/ajfps/%s | set them to empty to disable rel info col |
80 - HTTP Portcreate and run phpgui container with the following command
docker run -d \
-p 8080:80 \
--name phpgui \
ghcr.io/applejuicenetz/phpgui:latest
optional: add CORE_HOST and/or CORE_PORT with your environment
eg.
docker run -d \
-p 8080:80 \
-e "CORE_HOST=http://192.168.1.2" \
-e "CORE_PORT=9851" \
--name phpgui \
ghcr.io/applejuicenetz/phpgui:latest
services:
php-gui:
image: ghcr.io/applejuicenetz/phpgui:latest
restart: always
container_name: phpgui
network_mode: bridge
ports:
- "8080:80/tcp"
environment:
TZ: Europe/Berlin
CORE_HOST: http://192.168.1.2
CORE_PORT: 9851
GUI_LANGUAGE: de
Content type
Image
Digest
sha256:b20317457…
Size
224.7 MB
Last updated
6 months ago
docker pull applejuicenetz/phpgui