- Home
- Docs
- Installation and configuration
- Enterprise
- Docker version
- Installing ONLYOFFICE Docs Enterprise Edition on a server without Internet access
Installing ONLYOFFICE Docs Enterprise Edition on a server without Internet access
If you need to install ONLYOFFICE Document Server in an offline environment, you can do so using Docker. This guide will walk you through the steps to download, upload, and install the required Docker image without an internet connection.
Hardware requirements
- CPUsingle core 2 GHz or better
- RAM4 GB or more
- HDDat least 40 GB of free space
- SWAPat least 4 GB, but depends on the host OS. More is better
Installing Docker
Install Docker using the automatic script:
curl -fsSL https://get.docker.com | sh
Or use the official documentation for your operating system.
Installing Docker Compose
Install Docker Compose using the Docker repository or install the standalone version of Docker Compose.
Installing additional dependencies
Install additional dependencies for RPM based systems:
dnf install tar curl net-tools jq cronie
Install additional dependencies for Debian based systems:
apt-get install tar curl net-tools jq cron
Step 1: Download the Docker Image
Before proceeding with the offline installation, you need to download the ONLYOFFICE Document Server Docker image from a machine with internet access. Run the following command:
wget https://download.onlyoffice.com/install/docker/onlyoffice/documentserver-ee/onlyoffice-documentserver-ee_8.3.0.1.tar.gz
This command retrieves the necessary Docker image as a compressed archive.
Step 2: Transfer and Upload the Image to Docker
Once downloaded, transfer the file to your offline server using a USB drive, network transfer, or any other method available. After transferring, use the following command to load the Docker image into your offline environment:
docker load < onlyoffice-documentserver-ee_8.3.0.1.tar.gz
This command imports the image into your local Docker environment, making it available for use.
Step 3: Run the ONLYOFFICE Document Server Container
Now that the image is loaded, you can create and run a container using the following command:
docker run -d -p 80:80 --name onlyoffice onlyoffice/documentserver-ee
You have now successfully installed ONLYOFFICE Document Server in an offline Docker environment. The service should be accessible via your server's IP address on port 80. You can manage the container using standard Docker commands.