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