7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-02 06:10:47 +00:00

Fix incorrect vendor image pulling

This commit is contained in:
Régis Behmo 2019-03-21 14:08:47 +01:00
parent 23cb45e3c4
commit b0d07ef3fe
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
## Latest
- [Bugfix] Fix `images pull all` command which failed on "all" image
- [Improvement] Add configurable mongodb, SMTP and rabbitmq authentication
- [Improvement] Harmonize mysql username/password configuration parameters
- [Feature] Configurable and pluggable data storage backends (#114)

View File

@ -97,6 +97,7 @@ def vendor_image_names(config, image):
images.remove('mysql')
if not config['ACTIVATE_RABBITMQ']:
images.remove('rabbitmq')
return images
return [image]
images.add_command(build)