diff --git a/docker/PYROS_DOCKER_BUILD b/docker/PYROS_DOCKER_BUILD new file mode 100755 index 0000000..169a51d --- /dev/null +++ b/docker/PYROS_DOCKER_BUILD @@ -0,0 +1,3 @@ +#!/bin/bash + +docker-compose build \ No newline at end of file diff --git a/docker/PYROS_DOCKER_INSTALL b/docker/PYROS_DOCKER_INSTALL new file mode 100755 index 0000000..51cf0a3 --- /dev/null +++ b/docker/PYROS_DOCKER_INSTALL @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it pyros python3 pyros.py install \ No newline at end of file diff --git a/docker/PYROS_DOCKER_RUN b/docker/PYROS_DOCKER_RUN new file mode 100755 index 0000000..bf1471c --- /dev/null +++ b/docker/PYROS_DOCKER_RUN @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it pyros python3 pyros.py start webserver \ No newline at end of file diff --git a/docker/PYROS_DOCKER_SHELL b/docker/PYROS_DOCKER_SHELL new file mode 100755 index 0000000..a7a177f --- /dev/null +++ b/docker/PYROS_DOCKER_SHELL @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it pyros bash \ No newline at end of file diff --git a/docker/PYROS_DOCKER_START b/docker/PYROS_DOCKER_START new file mode 100755 index 0000000..80b5727 --- /dev/null +++ b/docker/PYROS_DOCKER_START @@ -0,0 +1,3 @@ +#!/bin/bash + +docker-compose up -d \ No newline at end of file diff --git a/docker/PYROS_DOCKER_TEST b/docker/PYROS_DOCKER_TEST new file mode 100755 index 0000000..8597b03 --- /dev/null +++ b/docker/PYROS_DOCKER_TEST @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it pyros python3 pyros.py test \ No newline at end of file diff --git a/docker/PYROS_DOCKER_UPDATE b/docker/PYROS_DOCKER_UPDATE new file mode 100755 index 0000000..e90e1af --- /dev/null +++ b/docker/PYROS_DOCKER_UPDATE @@ -0,0 +1,3 @@ +#!/bin/bash + +docker exec -it pyros python3 pyros.py update \ No newline at end of file -- libgit2 0.21.2