diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index cdc787c..51323af 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,6 +17,7 @@ RUN apt-get install build-essential
RUN apt-get install autotools-dev autoconf -y
RUN apt-get install libcurl4 libcurl4-gnutls-dev -y
RUN apt-get install checkinstall
+COPY start.sh .
#Installing CPU-miner
@@ -26,4 +27,7 @@ RUN ./autogen.sh
RUN CFLAGS="-march=native" ./configure
RUN make
+
+CMD ["/cpuminer/start.sh"]
+
#minerd -o stratum+tcp://rm-pool.duckdns.org:3333 -a scrypt -u . -p
\ No newline at end of file
diff --git a/run.sh b/run.sh
new file mode 100644
index 0000000..10ac11e
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+echo "Username:-"
+read USERNAME
+
+echo "Worker:-"
+read WORKER
+
+echo "PASSWORD:-"
+read PASS
+
+sudo minerd -o stratum+tcp://rm-pool.duckdns.org:3333 -a scrypt -u $USERNAME.$WORKER -p $PASS
\ No newline at end of file