We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ff91c commit 622e05bCopy full SHA for 622e05b
run_lovelace_engine.bash
@@ -1,12 +1,14 @@
1
#!/bin/bash
2
3
-docker build -t lovelace-engine .
4
-docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 14714:14714 lovelace-engine
5
-docker ps -a
+rm -f solutions && \
+rm -rf lovelace-solutions/
6
7
-git clone https://github.com/project-lovelace/lovelace-solutions.git
8
-ln -s lovelace-solutions/python/ solutions
+docker build -t lovelace-engine . && \
+docker run -d -v /var/run/docker.sock:/var/run/docker.sock -p 14714:14714 lovelace-engine && \
+docker ps -a
9
10
+git clone https://github.com/project-lovelace/lovelace-solutions.git && \
11
+ln -s lovelace-solutions/python/ solutions && \
12
pip install -r requirements.txt
13
14
export LOVELACE_SOLUTIONS_DIR=./lovelace-solutions/
0 commit comments