Title logo
griefed/griefed.de.

Griefed's Homepage rewritten in VueJS and Quasar. Not intended for public consumption.

4,456 0 unknown amd64

Build Information

General build information for this image

Docker Hub griefed/griefed.de
Build Time 20 Jan 2024 12:21:24
Base Image lsiobase/nginx
Category Website
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.8.2 20 Jan 2024 at 12:21:23

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  griefed.de:
    image: griefed/griefed.de:1.8.2
    container_name: griefed.de
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Timezone
      - PUID=1000 # User ID
      - PGID=1000 # Group ID
    volumes:
      - /host/path/to/config:/config # Data and configs
    ports:
      - 443:443/tcp # HTTPS
      - 80:80/tcp # HTTP

CLI

docker create \
  --name=griefed.de \
  -e TZ=Europe/Berlin `# Timezone` \
  -e PUID=1000 `# User ID` \
  -e PGID=1000 `# Group ID` \
  -v /host/path/to/config:/config `# Data and configs` \
  -p 443:443/tcp `# HTTPS` \
  -p 80:80/tcp `# HTTP` \
  --restart unless-stopped \
  griefed/griefed.de:1.8.2