🐳 lazydocker

The lazier way to manage everything docker

Docker Ready 3 Services Ports: 123, 12345 50,968 stars
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
test/docker-compose.yml
Download .yml
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