linuxserver/clarkson.

4,709,894 45 amd64 arm64 arm Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/clarkson
Build Time 25 Jan 2022 10:14:08
Category Productivity
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 1.1.2 25 Jan 2022 at 10:14:07

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  clarkson:
    image: linuxserver/clarkson:1.1.2
    container_name: clarkson
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID 
      - PGID=1000 # for GroupID
      - MYSQL_USERNAME=mysql_username # The user with access to the clarkson schema.
      - MYSQL_PASSWORD=mysql_password # The password for the user.
      - MYSQL_HOST=mysql_host # Points the backend to the MySQL database. This can be either a docker hostname or an IP.
      - ENABLE_REGISTRATIONS=true/false # Defaults to false. If set to true, allows new users to register.
    ports:
      - 3000:3000/tcp # WebUI

CLI

docker create \
  --name=clarkson \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID ` \
  -e PGID=1000 `# for GroupID` \
  -e MYSQL_USERNAME=mysql_username `# The user with access to the clarkson schema.` \
  -e MYSQL_PASSWORD=mysql_password `# The password for the user.` \
  -e MYSQL_HOST=mysql_host `# Points the backend to the MySQL database. This can be either a docker hostname or an IP.` \
  -e ENABLE_REGISTRATIONS=true/false `# Defaults to false. If set to true, allows new users to register.` \
  -p 3000:3000/tcp `# WebUI` \
  --restart unless-stopped \
  linuxserver/clarkson:1.1.2