Title logo
griefed/sui-dashboard.

https://github.com/ThreadR-r/sui-dashboard-status in a container!

506 0 amd64 Deprecated

Build Information

General build information for this image

Docker Hub griefed/sui-dashboard
Build Time 19 Nov 2020 20:43:11
Base Image lsiobase/nginx
Category Website
Synchronised Yes
Stable Yes
Deprecated Yes

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
arm arm 19 Nov 2020 at 20:43:11
latest latest 19 Nov 2020 at 19:17:34

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  sui-dashboard:
    image: griefed/sui-dashboard:latest
    container_name: sui-dashboard
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Timezone
      - PUID=1000 # User ID
      - PROTOCOL=https # The protocol used to access this container. Either HTTP or HTTPS.
      - PGID=1000 # Group ID
      - DOMAIN=www.example.com # The address of the device this container is running on. Can be an IP or sub.domain.tld.
    volumes:
      - /host/path/to/config:/config # Contains all application data and base-image config files
    ports:
      - 443:443/tcp # https
      - 80:80/tcp # http

CLI

docker create \
  --name=sui-dashboard \
  -e TZ=Europe/Berlin `# Timezone` \
  -e PUID=1000 `# User ID` \
  -e PROTOCOL=https `# The protocol used to access this container. Either HTTP or HTTPS.` \
  -e PGID=1000 `# Group ID` \
  -e DOMAIN=www.example.com `# The address of the device this container is running on. Can be an IP or sub.domain.tld.` \
  -v /host/path/to/config:/config `# Contains all application data and base-image config files` \
  -p 443:443/tcp `# https` \
  -p 80:80/tcp `# http` \
  --restart unless-stopped \
  griefed/sui-dashboard:latest