1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 07:18:06 +02:00

Merge pull request #276 from overleaf/jpa-sandboxed-compose-sp-only

Sandboxed Compiles is available for Server Pro only
This commit is contained in:
Jakob Ackermann 2024-07-29 18:57:14 +02:00 committed by GitHub
commit 87f0d3734a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View file

@ -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`.

View file

@ -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

2
bin/up
View file

@ -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