From 561de6e1653b0fd5a720343d2642d7f29afdd3c2 Mon Sep 17 00:00:00 2001 From: Xsivax Date: Mon, 27 Sep 2021 12:58:27 +0200 Subject: [PATCH] readme --- README.md | 12 ++---------- run.sh | 25 ------------------------- 2 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 run.sh diff --git a/README.md b/README.md index 346d273..74a6e29 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,8 @@ Build and run : -. run.sh - - -terminate with : - -Ctrl-C - -then: - -cd .. +$ cd /compose +$ docker-compose up diff --git a/run.sh b/run.sh deleted file mode 100644 index 4bc73ed..0000000 --- a/run.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -trap "cd '..'" TERM INT - -# run docker-container -run() { - cd "compose" && \ - docker-compose build --no-cache deb-rust && \ - docker-compose up && \ - - -} - -run - -#to do: -# ctrl-c(sigint): - # stop and remove container(with custom message) - # cd .. - - - - - -