Making the run and setup scripts executable so that when I clone they are executable right away. Signed-off-by: Ethan Wellenreiter <ewellenreiter@gmail.com>
15 lines
373 B
Bash
Executable File
15 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
echo "----------STARTING DOCKER BUILD----------"
|
|
|
|
cd ./docker
|
|
docker build --file ./Dockerfile --tag indexerenv .
|
|
cd ..
|
|
|
|
echo -e "----------DOCKER BUILD FINISHED----------\n\n\n"
|
|
|
|
echo "Run docker on image \"indexerenv\""
|
|
echo "-----WARNING: RUN X SERVER IF ON MAC OR WINDOWS (OR A REQUIRED LINUX DISTRO (NOT UBUNTU)) PRIOR TO RUNNING DOCKER CONTAINER-----"
|