- Install docker.io and docker-compose:
sudo apt-get install docker.io docker-compose
.
- Download the zip file of this gist => CidsRef container-data. Unzip it and move it to a location of your choice.
- Add your cids_reference.sql to the container-data directory.
- Edit YOUR_USERNAME and YOUR_CRYPTED_PASSWORD in settings.xml
- Download the zip file of this gist => CidsRef Dockerfiles. Unzip it and cd into the unzipped directory.
- Make build_all.sh executable and execute it:
chmod +x build_all.sh && ./build_all.sh
. - Grab some coffee (this step will take a while) and take a look at docker-compose.yml => check that the volumes-paths matches to your container-data directory.
- Run the containers (will take a while the first time):
docker-compose up
(-d
). - If the containers has been started with the
-d
-flag, stop the containers withdocker-compose stop
, else typectrl
+c
.