Skip to main content

fin is the Docksal command line utility. Docksal is a tool for defining and managing web development environments. It uses Docker and Docker Compose to create fully containerized environments for your projects.

# To start the project in the current directory:
fin project start

# To stop the project in the current directory:
fin project stop

# To open a shell into a specific container:
fin bash <container_name>

# To display logs of a specific container:
fin logs <container_name>

# To display logs of a specific container and follow the log:
fin logs -f <container_name>