intermine / wizard

early mockups for intermine data import wizard
MIT License
1 stars 3 forks source link

Script building docker containers for each moving part #23

Open yochannah opened 4 years ago

yochannah commented 4 years ago

so there is always an up-to-date and working version of the configurator and compose available.

e.g. cd ../intermine_compose docker build cd ../intermine_configurator docker build

@uosl is this right?

heralden commented 4 years ago

You'll need to make sure you specify the same tags used in docker-compose.yml and provide a build target (in this case just .).

cd ../intermine_compose
docker build -t intermine/compose:latest .
cd ../intermine_configurator
docker build -t intermine/configurator:latest .

After that, running docker-compose up --build --force-recreate in the wizard repo should use the locally built images.