Sign inSign up

lifailon/lazydocker-web

By lifailon

Updated about 1 year ago

Web interface for LazyDocker based on ttyd.

Image
Developer tools
Monitoring & observability
0

557

lifailon/lazydocker-web repository overview

LazyDocker-Web

This image is a Web interface for the lazydocker (TUI to manage everything Docker) based on ttyd. The image is built from a very simple Dockerfile without changing the source code.

Launch

To run the container, create a docker-compose.yml and use the image from Docker Hub:

services:
  lazydocker-web:
    image: lifailon/lazydocker-web:latest
    container_name: lazydocker-web
    restart: unless-stopped
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    env_file:
      - .env
    ports:
      - "${PORT:-3333}:${PORT:-3333}"

To add basic authorization in the web interface or change the port, create a .env file next to it with the following contents:

PORT=3333
USERNAME=admin
PASSWORD=admin

Alternatives

isaiah - independent development clone of lazydocker for the Web based on Go and JavaScript.

Tag summary

Content type

Image

Digest

sha256:2ef333f61

Size

21.3 MB

Last updated

about 1 year ago

docker pull lifailon/lazydocker-web