Clusteer
Github Repo
  • โšกIntroduction
  • ๐ŸŽ‰Support
  • Getting Started
    • ๐Ÿ†Benchmarks
    • ๐Ÿš€Installation
      • Docker
      • Laravel Sail (Docker)
    • โœจStarting the server
    • ๐Ÿ™ŒBasic example
  • Client commands
    • ๐Ÿ˜Cookies
    • ๐ŸžDebug console
    • ๐Ÿ‘จโ€๐ŸŽจ Screenshot
    • ๐ŸงตRequest metadata
    • โŒšWaiting for requests
  • Actions
    • #๏ธโƒฃ Keyboard commands
    • ๐ŸMouse commands
  • Advanced
    • ๐ŸŽ€Custom Script
    • ๐Ÿ‘ฉโ€๐Ÿš€ Custom Actions
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Getting Started
  2. Installation

Laravel Sail (Docker)

PreviousDockerNextStarting the server

Last updated 3 years ago

Was this helpful?

For Laravel Sail, you might use the containers and add a new service in your docker-compose.yaml file:

# For more information: https://laravel.com/docs/sail
version: '3'
services:
    # ...

    clusteer:
        image: 'quay.io/renokico/clusteer:latest-16-alpine'
        environment:
            DEBUG: '1'
            MAX_BROWSERS: '1'
        ports:
            - '${CLUSTEER_PORT:-8080}:8080'
        networks:
            - sail

networks:
    sail:
        driver: bridge
๐Ÿš€
Docker