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:
commit
87f0d3734a
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-07-29
|
||||||
|
### Fixed
|
||||||
|
- Sandboxed Compiles is available for Server Pro only
|
||||||
|
|
||||||
## 2024-07-17
|
## 2024-07-17
|
||||||
### Added
|
### Added
|
||||||
- Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `5.1.0`.
|
- Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `5.1.0`.
|
||||||
|
|
|
@ -28,7 +28,7 @@ function build_environment() {
|
||||||
if [[ $MONGO_ENABLED == "true" ]]; then
|
if [[ $MONGO_ENABLED == "true" ]]; then
|
||||||
set_mongo_vars
|
set_mongo_vars
|
||||||
fi
|
fi
|
||||||
if [[ $SIBLING_CONTAINERS_ENABLED == "true" ]]; then
|
if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
|
||||||
set_sibling_containers_vars
|
set_sibling_containers_vars
|
||||||
fi
|
fi
|
||||||
if [[ $NGINX_ENABLED == "true" ]]; then
|
if [[ $NGINX_ENABLED == "true" ]]; then
|
||||||
|
|
2
bin/up
2
bin/up
|
@ -84,7 +84,7 @@ function __main__() {
|
||||||
initiate_mongo_replica_set
|
initiate_mongo_replica_set
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
|
if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
|
||||||
pull_sandboxed_compiles
|
pull_sandboxed_compiles
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue