Commit b05da6b1b8f0d7722b34a90b8573b9f084a6f491

Authored by Alexis Koralewski
1 parent 48bacc35
Exists in dev

add shortcut scripts for using PyROS with Docker

docker/PYROS_DOCKER_BUILD 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker-compose build
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_INSTALL 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker exec -it pyros python3 pyros.py install
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_RUN 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker exec -it pyros python3 pyros.py start webserver
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_SHELL 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker exec -it pyros bash
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_START 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker-compose up -d
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_TEST 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker exec -it pyros python3 pyros.py test
0 4 \ No newline at end of file
... ...
docker/PYROS_DOCKER_UPDATE 0 → 100755
... ... @@ -0,0 +1,3 @@
  1 +#!/bin/bash
  2 +
  3 +docker exec -it pyros python3 pyros.py update
0 4 \ No newline at end of file
... ...