Title logo
griefed/d-zone.

https://github.com/d-zone-org/d-zone in a container!

1,480 0 amd64 Deprecated

Build Information

General build information for this image

Docker Hub griefed/d-zone
Build Time 10 Oct 2022 10:12:50
Base Image lsiobase/alpine
Category Simulation
Synchronised Yes
Stable Yes
Deprecated Yes

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
arm-proxy latest 01 Nov 2020 at 23:09:11
arm-port arm-port 13 Dec 2020 at 18:40:29
latest latest 01 Nov 2020 at 23:09:11
proxy proxy 16 Mar 2021 at 17:11:02
port port 16 Mar 2021 at 17:07:01

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  d-zone:
    image: griefed/d-zone:latest
    container_name: d-zone
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Timezone
      - TOKEN=YOUR_DISCORD_BOT_TOKEN # Needed for D-Zone to create the simulation. See https://discordapp.com/developers/applications/me
      - PUID=1000 # User ID
      - PGID=1000 # Group ID
    volumes:
      - /host/path/to/config:/config # Contains all application data and base-image config files
    ports:
      - 3000:3000/tcp # Website

CLI

docker create \
  --name=d-zone \
  -e TZ=Europe/Berlin `# Timezone` \
  -e TOKEN=YOUR_DISCORD_BOT_TOKEN `# Needed for D-Zone to create the simulation. See https://discordapp.com/developers/applications/me` \
  -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 3000:3000/tcp `# Website` \
  --restart unless-stopped \
  griefed/d-zone:latest