Skip to content
This repository has been archived by the owner on Jun 5, 2021. It is now read-only.

Docker Setup

zekro edited this page Sep 17, 2019 · 1 revision

Docker Image Setup

Here you can find all available images of SLMS server on Docker Hub.

You can pull the image to your machine:

$ docker pull zekro/slms:latest

Then, create a a container with the follwoing parameters:

$ docker run -d \
    -p 80:8080 \
    -v $PWD/slms/config:/etc/config \
    --name slms \
    zekro/slms:latest

Of course, you can also configure Docker Compose to run SLMS:

version: '3'

services:
  slms:
    image: 'zekro/slms:canary'
    expose:
      - '8080'
    volumes:
      - './slms/config:/etc/config'
    restart: always
Clone this wiki locally