* In this version we have minor modifications in downloads.js to skip the installation if it is already installed. * The docker core image is now part of the core repository, and some modifications have been made to the docker image. more changes are planned for the next commit * some errors can still occur if the new configuration file is not updated, and this will have to be done manually
5 lines
244 B
Bash
5 lines
244 B
Bash
#!/bin/bash
|
|
docker_image_name='thebdsmaneger/maneger'
|
|
docker pull bdsmaneger/node_image:latest
|
|
docker build -f Docker/Dockerfile --tag ${docker_image_name} .
|
|
echo "Run: \"docker run -ti --rm -P -v /tmp/bds:/home/bds ${1} ${docker_image_name}\"" |