1. Pull Image
docker pull jesseduffield/lazydocker:latest
2. 1-Click Launch Command
docker run -d --name lazydocker -p 123:123 --restart always jesseduffield/lazydocker:latest
3. Compose Deployment
docker compose up -d
version: "3.5"
services:
my-service:
build:
dockerfile: Dockerfile
context: .
command: /app/print-random-stuff.sh
depends_on:
- my-service2
ports:
- 123:321
my-service2:
build:
dockerfile: Dockerfile
context: .
command: /app/print-random-stuff.sh
ports:
- 12345:12345
my-service3:
build:
dockerfile: Dockerfile
context: .
command: /app/print-random-stuff.sh
Container Topology & Configured Services
my-service
Ports: 123:321
my-service2
Ports: 12345:12345