With Docker
- Debian/Ubuntu Linux
- MacOS
- Windows
- Open a terminal.
- Uninstall old Docker versions with the following command:
sudo apt-get remove docker docker.io containerd runc
- Install Docker with the following command:
curl -fsSL https://get.docker.com | sudo bash
- 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
- Install Git with the following command:
sudo apt-get install git
- Clone the OpenDocs Docker repository with the following command:
git clone https://github.com/opendocs-editor/docker.git ~/opendocs
- Run the following commands to start the OpenDocs Docker containers:
cd ~/opendocs
docker-compose up -d
- Open a new browser tab and navigate to http://localhost:4500/.
- Open a terminal.
- Install Docker Desktop by downloading the correct package for your CPU architecture.
- Amd64: https://desktop.docker.com/mac/main/amd64/Docker.dmg
- Arm64: https://desktop.docker.com/mac/main/arm64/Docker.dmg
- Install Git with the following command:
brew install git
- Clone the OpenDocs Docker repository with the following command:
git clone https://github.com/opendocs-editor/docker.git ~/opendocs
- Run the following commands to start the OpenDocs Docker containers:
cd ~/opendocs
docker-compose up -d
- Open a new browser tab and navigate to http://localhost:4500/.
- Install Docker Desktop from this installer:
- Install Git from this installer:
- Clone the OpenDocs Docker repository with the following command:
git clone https://github.com/opendocs-editor/docker.git %HOMEPATH%\Desktop\opendocs
- Run the following commands to start the OpenDocs Docker containers:
cd %HOMEPATH%\Desktop\opendocs
docker-compose up -d
- Open a new browser tab and navigate to http://localhost:4500/.