gear-codeSandboxed Compiles

Overleaf Pro comes with the option to run compiles in a secured sandbox environment for enterprise security. It does this by running every project in its own secured docker environment.

Improved security

Sandboxed Compiles are the recommended approach for Server Pro due to many LaTeX documents requiring/having the ability to execute arbitrary shell commands as part of the PDF compile process. If you use Sandboxed Compiles, each compile runs in a separate Docker container with limited capabilities that are not shared with any other user or project and has no access to outside resources such as the host network.

circle-exclamation

Easier package management

To avoid manually installing packages, we recommend enabling Sandboxed Compiles. This is a configurable setting within Server Pro that will provide your users with access to the same TeX Live environment as that on overleaf.com but within your own on-premise installation. TeX Live images used by Sandboxed Compiles contain the most popular packages and fonts tested against our gallery templates, ensuring maximum compatibility with on-premise projects.

Enabling Sandboxed Compiles allows you to configure which TeX Live versions users are able to choose from within their project along with setting a default TeX Live image version for new projects.

circle-info

If you attempt to run Overleaf Pro without Sandboxed Compiles, your instance will default to using a basic scheme version of TeX Live for compiles. This basic version is lightweight and only contains a very limited subset of LaTeX packages, which will most likely result in missing package errors for your users, especially if they try to use pre-built templates.

As Overleaf Pro has been architected to work offline, there isn't an automated way to integrate overleaf.com gallery templates into your on-premise installation; it is, however, possible to do this manually on a per-template basis. For more information on how this works, please check out our transferring templates from overleaf.com guide: Transferring templates from overleaf.com.

circle-info

Sandboxed Compiles requires that the sharelatex container has access to the Docker socket on the host machine (via a bind mount) so it can manage these sibling compile containers.

How it works

When Sandboxed Compiles are enabled, the Docker socket will be mounted from the host machine into the sharelatex container, so that the compiler service in the container can create new Docker containers on the host. Then for each run of the compiler in each project, the LaTeX compiler service (CLSI) will do the following:

  • Write out the project files to a location inside the OVERLEAF_DATA_PATH.

  • Use the mounted Docker socket to create a new texlive container for the compile run.

  • Have the texlive container read the project data from the location under OVERLEAF_DATA_PATH.

  • Compile the project inside the texlive container.

Enabling Sandboxed Compiles

For Toolkit User

To enable sandboxed compiles (also known as Sibling containers), set the following configuration options in overleaf-toolkit/config/overleaf.rc:

For Docker Compose User

triangle-exclamation

If you're using a 4.x version (or earlier) please make sure the variables are prefixed accordingly (e.g. SHARELATEX_MONGO_URL instead of OVERLEAF_MONGO_URL).

Changing the TexLive Image

circle-info

For China mainland user, you can use ghcr.nju.edu.cn to accelerate your download.

Overleaf Pro uses three environment variables to determine which TeX Live images to use for Sandboxed Compiles:

  • TEX_LIVE_DOCKER_IMAGE (required), The default TeX Live image used for compiling new projects. This image must be included in ALL_TEX_LIVE_DOCKER_IMAGES.

  • ALL_TEX_LIVE_DOCKER_IMAGE_NAMES (required), A comma-separated list of friendly names for the images, used for frontend options.

  • ALL_TEX_LIVE_DOCKER_IMAGES (required), A comma-separated list of TeX Live images to use. If the Overleaf Toolkit is used for deployment, these images will be downloaded or updated. To skip downloading, set SIBLING_CONTAINERS_PULL=false in config/overleaf.rc.

When starting your Overleaf Pro instance using the bin/up command, the Toolkit will automatically pull all of the images listed in ALL_TEX_LIVE_DOCKER_IMAGES.

Here's an example where we default to TeX Live 2025 for new projects, and keep 2024 in use for existing projects.

triangle-exclamation

Available TeX Live images

These are a series of TeX Live images that are specially optimized for Overleaf, also can be added to TEX_LIVE_DOCKER_IMAGE and ALL_TEX_LIVE_DOCKER_IMAGES:

  • ghcr.io/ayaka-notes/texlive-full:2025.1 (Also latest tag)

  • ghcr.io/ayaka-notes/texlive-full:2024.1

  • ghcr.io/ayaka-notes/texlive-full:2023.1

  • ghcr.io/ayaka-notes/texlive-full:2022.1

  • ghcr.io/ayaka-notes/texlive-full:2021.1

  • ghcr.io/ayaka-notes/texlive-full:2020.1

circle-exclamation

Can I Using Other Image Registry

Some people may wonder if I can replace ghcr.io with another mirror site, or switch texlive to other image from docker hub?

No, we don't recommend it because the configuration is relatively complicated. If you are downloading from a mirror site, you can rename your image to ghcr.io/ayaka-notes/texlive-full.

But, if you really want to use your own Image Registry, please add:

Then, you need to make sure, all the images of texlive are in your-repo, like

  • hub.your.com/your-repo/texlive-full:2025.1

  • hub.your.com/your-repo/texlive-full:2024.1

For detailed infomation, read the source code below to understand how we parse your env var:

Known Issues

Using 6.0.1-ext-v3.3, I have these settings in variables.env:

This works fine with texlive/texlive:latest-full. However, i pulled another texlive image danteev/texlive:2025-10-15 and changed both of these variables to the new image name but it doesn't work:

In the logs, i see the following:

It seems that the updated settings in variables.env are not taking effect. Compile still tries to run the texlive/texlive:latest-full image, not the new image.

I tried rebooting, deleting the containers and re-run, but still the same issue.

Any solutions?

Due to some technical limitations, if you only set up a single Docker TeXLive image, such as texlive-fullA:latest

And after running your overleaf instance for a while, you might want to modify the TeXLive image to texlive-fullB:latest. Then, you will see that your users are unable to compile all projects.

This is because the name of TeXLive-Full image (for sandbox compile) in each project is persisted in the database. Only when user switch his project's TeXLive verion, for example, from 2024 to 2025, will the image name be changed in database.

When CLSI compiles a project, it uses the container image name found in the database to directly compile the project.

If you only provide one Docker image, users will not be able to modify the image used to compile the project. In this case, you need to write a script to manually modify the TeXLive image for all user projects in mongoDB.

Debug

Run the following command to check clsi log from toolkit:

Last updated

Was this helpful?