Easily Deploy a Simplehelp Server in Docker
2.6K
A Docker image for running SimpleHelp remote support server.
docker run -d \
--name simplehelp \
-p 80:80 \
-p 443:443 \
-v simplehelp-config:/opt/SimpleHelp/configuration \
alzahar/simplehelpserver:latest
Open http://localhost to access the web interface.
services:
simplehelp:
image: alzahar/simplehelpserver:latest
container_name: simplehelpServer
ports:
- "80:80"
- "443:443"
volumes:
- ./opt/SimpleHelp/configuration:/opt/SimpleHelp/configuration
restart: unless-stopped
| Property | Value |
|---|---|
| Base Image | eclipse-temurin:17-jre |
| Build Stage | alpine:latest (download only) |
| Run User | simplehelpuser (non-root via gosu) |
| Working Dir | /opt/SimpleHelp |
| Port | Protocol | Purpose |
|---|---|---|
| 80 | TCP | HTTP |
| 443 | TCP | HTTPS |
| Path | Description |
|---|---|
/opt/SimpleHelp/configuration | Server config, SSL certs, backups. Mount this to persist data across container restarts. |
No environment variables required. SimpleHelp is configured through its web interface after first launch.
gosuGitHub - Alzarak/Simplehelp-Server-Docker
SimpleHelp is commercial software. Refer to the SimpleHelp license for usage terms.
Content type
Image
Digest
sha256:dca59ec5e…
Size
1.4 GB
Last updated
about 1 month ago
docker pull alzahar/simplehelpserver