Changelog
1.5.6 - February 13, 2022
mongodb:27017
as the member's hostname instead of 127.0.0.1:27017
Changelog
1.5.5 - September 30, 2021
mup init
now uses zodern/meteor:root
as docker imageapp.docker.prepareBundleLocally
is enabled and logging into private docker registryChangelog
1.5.4 - September 19, 2021
config.privateDockerRegistry
, the host option is now optional and defaults to the docker hub registryapp.buildOptions.cleanBuildLocation
option to falsemup status
when the config does not have a servers objectconfig.app.buildOptions.buildLocation
to the default value while preparing the mup config, making the build location available to other plugins and hooks. You can also see the build location by running mup validate --show
mup meteor status
when mup uses a non-root user on the serverPrepare Bundle Locally
Mup can build the docker image locally instead of on the remote server, which can be faster and avoids taking resources away from anything else running on the servers. This version has some fixes and performance improvements:
app.docker.prepareBundleLocally
is enabled (@Floriferous)Plugin API
prepareConfig
is now passed an instance of the plugin api as the second argumentChangelog
1.5.3 - December 8, 2020
app.docker.prepareBundleLocally
is enabledChangelog
1.5.2 - December 2, 2020
mup mongo shell
command to access a Mongo shell on the serverapp.docker.prepareBundleLocally
option to build docker image locally instead of on the servers. It is then pushed to the private docker registrymup ssh
and mup meteor debug
mup validate --scrub
will now scrub proxy
and privateDockerRegistry
MUP_PROFILE_TASKS
env var to show how long each task tookapp.servers[server name].env.PORT
meteor status
's outputmup deploy --cached-build
only requires the .tar.gz
file, and not the extracted bundle
folder. This matches the behavior with mup 1.4.app.buildOptions.executable
option on Windowsproxy.stickySessions
optionPlugin API
verbose
option in runTaskList
defaults to true
when mup is run with the --verbose
optionshowDuration
option to runTaskList
. When true, nodemiral will log how long each task took. Defaults to true
when the MUP_PROFILE_TASKS
env var is set to true