/lighter-portainer

Web management UI for lighterDOCK

Primary LanguageHTMLzlib LicenseZlib

Image Size Microbadger Build Status

lighter-Portainer is a web management UI for lighterDOCK, based on Portainer.

lighterDOCK is a lightweight docker aimed at edge computing gateway/server.

Portainer is a lightweight management UI which allows you to easily manage your different Docker environments (Docker hosts or Swarm clusters). Portainer is meant to be as simple to deploy as it is to use. It consists of a single container that can run on any Docker engine (can be deployed as Linux container or a Windows native container, supports other platforms too). Portainer allows you to manage all your Docker resources (containers, images, volumes, networks and more) ! It is compatible with the standalone Docker engine and with Docker Swarm mode.

Getting started

  • Deploy lighter-Portainer

    docker pull saafo/lighter-portainer
    • Use docker-compose to deploy:

    Create file docker-compose.yml:

    version: '3'
    services:
      portainer:
        image: saafo/lighter-portainer:latest
        restart: always
        ports:
          - 9000:9000
        volumes:
          - /var/run/docker.sock:/var/run/docker.sock
    • Use docker to deploy:
    docker run -d -p 9000:9000 \
      --restart=always \
      -v /var/run/docker.sock:/var/run/docker.sock \
      saafo/lighter-portainer
  • Build lighter-Portainer locally

    • Install the 5 packages below before executing yarn
      apt install libtool automake autoconf nasm libpng-dev
  • Documentation

Limitations

lighter-Portainer supports lighterDOCK only. The Docker may operate, however it is not supported.

Licensing

lighter-Portainer is licensed under the zlib license. See LICENSE for reference.

lighter-Portainer also contains the following code, which is licensed under the MIT license:

UI For Docker: Copyright (c) 2013-2016 Michael Crosby (crosbymichael.com), Kevan Ahlquist (kevanahlquist.com), Anthony Lapenna (portainer.io)

rdash-angular: Copyright (c) [2014][elliot hesp]