GitXplorerGitXplorer
S

lighter-portainer

public
0 stars
0 forks
2 issues

Commits

List of commits on branch develop.
Unverified
2aa3e85fd195860eb137a7a3a6d47f9ef131d3c9

fix: chmod a+x for dist/docker & portainer

SSaafo committed 4 years ago
Unverified
5c475a0a9cf5b536ce8329e01d484bce24962a0f

feat: support CPU & Memory Usages

SSaafo committed 4 years ago
Unverified
414ea037d6d27b4d456bf64f5cfce0d1b5cba885

feat: support CPU & Memory Usages

SSaafo committed 4 years ago
Unverified
509b80ac3f041103e0d0c97156337ed7e8ddd9e3

update README

SSaafo committed 5 years ago
Unverified
99dbc90d3b0f13b96dc5e515f649a914195ec05d

feat: support CA of images for lighterDOCK

SSaafo committed 5 years ago
Unverified
f8a03fa2ddea3bd779169ab6d718368df42e1318

update README

SSaafo committed 5 years ago

README

The README file for this repository.

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]