Linux requirements
1. Install Docker
# Download installation script
curl -fsSL https://get.docker.com -o get-docker.sh
# Run installation script
sudo bash get-docker.sh
# Add your user to the “docker” group to run docker without root.
sudo usermod -aG docker $USER
# After that you'll need to logout and login to your account or,
# you can temporarily enable group changes by running command below
newgrp docker2. Prepare the environment
3. Start your application
Last updated