Title logo
griefed/dcc.

https://github.com/bucherfa/dcc-web in a container!

156 0 amd64 Deprecated

Build Information

General build information for this image

Docker Hub griefed/dcc
Build Time 19 Nov 2020 19:53:29
Base Image lsiobase/nginx
Category Converter
Synchronised Yes
Stable Yes
Deprecated Yes

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 19 Nov 2020 at 19:09:06
arm arm 19 Nov 2020 at 19:53:29

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  dcc:
    image: griefed/dcc:latest
    container_name: dcc
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Timezone
      - PUID=1000 # User ID
      - PGID=1000 # Group ID
    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=dcc \
  -e TZ=Europe/Berlin `# Timezone` \
  -e PUID=1000 `# User ID` \
  -e PGID=1000 `# Group ID` \
  -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/dcc:latest