Coolify: The Ultimate Self-Hosted Platform as a Service?#
In this video, I’ll show you how to set up Coolify, the ultimate open-source alternative to Heroku and Vercel. We’ll cover the installation on your own hardware, how to configure your first server, and deploy your applications using Docker and Git. If you want to take control of your PaaS infrastructure while keeping the convenience of modern deployment workflows, this tutorial is for you.
References#
- Coolify Documentation: https://coolify.io/docs/
- Coolify Installation Guide: https://coolify.io/docs/get-started/installation
- Self-hosted GitLab: https://youtu.be/wLmF8jV_0ck
- Traefik Tutorial: https://youtu.be/-hfejNXqOzA
- Proxmox LXC Tutorial: https://youtu.be/iIfRchzYSzM
Notes#
Quick Installation#
Run the following command to install Coolify. This will automatically install Docker, Docker Compose, download the docker-compose.yml file, and start the Coolify service.
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | sudo bash
Optional: If you need to change Docker’s default IP range:
sudo -E env DOCKER_ADDRESS_POOL_BASE=172.16.0.0/12 DOCKER_ADDRESS_POOL_SIZE=20 bash -c 'curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash'
Accessing Coolify#
After installation, access Coolify at http://your-server-ip:8000 and follow the onboarding instructions to set up your admin account and configure your first server.

