diff --git a/Dockerfile b/Dockerfile
index a0e15a0d343219e6326d533602e90734554e6184..b5ee482a059a1fced818761b594fc93280da1345 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -59,11 +59,9 @@ RUN mv ./faircoind /home/faircoin/faircoind
 RUN mv ./faircoin-cli /home/faircoin/faircoin-cli
 
 WORKDIR /home/faircoin
-ARG FAIRCOIN_CONF
-
 RUN ./faircoind -daemon -disablewallet -reindex && \
     sleep 60 && \
     ./faircoin-cli stop && \
     sleep 10
 
-ENTRYPOINT ["./faircoind"]
+ENTRYPOINT ["./faircoind","-daemon","-disablewallet"]
diff --git a/docker-compose.yml b/docker-compose.yml
index 4bb06fb91d31a1ac9fb347551922ad46d0780f4c..b8b2c2d5f62ca930bd156eef4eea1038b37e516d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -11,7 +11,7 @@ services:
         GITLAB_RUNNER_GID: "${GITLAB_RUNNER_GID}"
     container_name: FairCoin.Co-faircoind
     restart: always
-    command: '-disablewallet -conf="${FAIRCOIN_CONF}"'
+#    command: '-disablewallet'
 #    command: '-disablewallet -conf="${FAIRCOIN_CONF}" -blocknotify="${BLOCKNOTIFY}"'
     network_mode: "host"
     user: "${GITLAB_RUNNER_UID}:${GITLAB_RUNNER_GID}"