DevOps & Infrastructure1 min read

Install Docker on your VPS in 1 minute

The fastest and official way to prepare your server to deploy TechStackScale stacks.

1. Connect via SSH

Use your terminal to enter your server. You will need the IP and password provided by your hosting provider.

ssh root@your_server_ip

2. Official installation script

Docker offers a script that automatically detects your system (Ubuntu, Debian, CentOS...) and configures everything.

curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh

3. Verify installation

If everything went well, this command will return the installed versions of Docker and Docker Compose.

docker --version && docker compose version

🚀 All set!

You can now use any docker-compose.yml file generated by our calculator and deploy your app with a single command: 'docker compose up -d'.