Skip to content

Installation

Installing Stackvo on your computer is quite easy and supported on all major operating systems. This section details all steps from Docker installation to Stackvo configuration on Linux, macOS, and Windows platforms. Guides specifically prepared for each operating system cover everything from system requirements to installation verification.


Operating System Selection

Stackvo works on all major operating systems. Select your operating system:


Checked System Requirements?

Check the System Requirements page before starting the installation.


Quick Installation Way

If Docker is already installed on your system:

# 1. Clone the repository
git clone https://github.com/stackvo/stackvo.git
cd stackvo

# 2. Configuration
cp .env.example .env

# 3. Run installation script
./stackvo.sh install

# 4. Start
./stackvo.sh generate
./stackvo.sh up

Installation Completed!

Web UI: https://stackvo.loc


Post-Installation Settings

Editing Hosts File

sudo nano /etc/hosts

Add:

127.0.0.1  stackvo.loc
127.0.0.1  traefik.stackvo.loc

As administrator:

notepad C:\Windows\System32\drivers\etc\hosts

Add:

127.0.0.1  stackvo.loc
127.0.0.1  traefik.stackvo.loc


Installation Verification

Verify that the installation was successful:

Service Check

# Status of all services
./stackvo.sh ps

# Check logs
./stackvo.sh logs

Web UI Check

Open in your browser:

  • Stackvo Dashboard: https://stackvo.loc/
  • Traefik Dashboard: http://traefik.stackvo.loc

Installation Completed!

You can now proceed to the Quick Start page to create your first project.