Skip to main content
Version: Next

With Docker

  1. Open a terminal.
  2. Uninstall old Docker versions with the following command:
sudo apt-get remove docker docker.io containerd runc
  1. Install Docker with the following command:
curl -fsSL https://get.docker.com | sudo bash
  1. Install Docker Compose with the following commands:
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
  1. Install Git with the following command:
sudo apt-get install git
  1. Clone the OpenDocs Docker repository with the following command:
git clone https://github.com/opendocs-editor/docker.git ~/opendocs
  1. Run the following commands to start the OpenDocs Docker containers:
cd ~/opendocs
docker-compose up -d
  1. Open a new browser tab and navigate to http://localhost:4500/.