From 3e91fad9c0626f532bdb1c3e6738e09b6590ddb2 Mon Sep 17 00:00:00 2001 From: Jakob Ackermann Date: Mon, 29 Jul 2024 16:56:23 +0100 Subject: [PATCH] Sandboxed Compiles is available for Server Pro only --- CHANGELOG.md | 4 ++++ bin/docker-compose | 2 +- bin/up | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa8d825..c4adac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2024-07-29 +### Fixed +- Sandboxed Compiles is available for Server Pro only + ## 2024-07-17 ### Added - Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `5.1.0`. diff --git a/bin/docker-compose b/bin/docker-compose index 31ec038..01a31dc 100755 --- a/bin/docker-compose +++ b/bin/docker-compose @@ -28,7 +28,7 @@ function build_environment() { if [[ $MONGO_ENABLED == "true" ]]; then set_mongo_vars fi - if [[ $SIBLING_CONTAINERS_ENABLED == "true" ]]; then + if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then set_sibling_containers_vars fi if [[ $NGINX_ENABLED == "true" ]]; then diff --git a/bin/up b/bin/up index 23d5eaa..b5c619b 100755 --- a/bin/up +++ b/bin/up @@ -84,7 +84,7 @@ function __main__() { initiate_mongo_replica_set fi - if [[ "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then + if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then pull_sandboxed_compiles fi