Web interface for LazyDocker based on ttyd.
557
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.
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
isaiah - independent development clone of lazydocker for the Web based on Go and JavaScript.
Content type
Image
Digest
sha256:2ef333f61…
Size
21.3 MB
Last updated
about 1 year ago
docker pull lifailon/lazydocker-web