Title logo
griefed/ltt-mapmaker.

Visual map maker for Let Them Trade by Spaceflower, made with VueJS/Quasar.

1,395 0 amd64 arm arm64 Deprecated

Build Information

General build information for this image

Docker Hub griefed/ltt-mapmaker
Build Time 22 Jan 2023 14:38:40
Base Image lsiobase/nginx:3.14
Category Mapmaker
Synchronised Yes
Stable Yes
Deprecated Yes

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2.3.7 22 Jan 2023 at 14:38:38

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  ltt-mapmaker:
    image: griefed/ltt-mapmaker:2.3.7
    container_name: ltt-mapmaker
    restart: unless-stopped
    environment:
      - TZ=Europe/Berlin # Timezone
      - PUID=1000 # User ID
      - PGID=1000 # Group ID
    ports:
      - 443:443/tcp # HTTPS
      - 80:80/tcp # HTTP port

CLI

docker create \
  --name=ltt-mapmaker \
  -e TZ=Europe/Berlin `# Timezone` \
  -e PUID=1000 `# User ID` \
  -e PGID=1000 `# Group ID` \
  -p 443:443/tcp `# HTTPS` \
  -p 80:80/tcp `# HTTP port` \
  --restart unless-stopped \
  griefed/ltt-mapmaker:2.3.7