diff --git a/Dockerfile b/Dockerfile index f7d3fd3..ce55e73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ RUN mkdir /data RUN mkdir /data/logs RUN mkdir /data/plugins -CMD exec EstiConsole/esticonsole +CMD exec ./esticonsole diff --git a/EstiConsole/config.json b/config.json similarity index 84% rename from EstiConsole/config.json rename to config.json index 82375fd..055803a 100644 --- a/EstiConsole/config.json +++ b/config.json @@ -2,11 +2,11 @@ "instance_name": "CTF", "instance_port": 19005, "sslencryption": true, - "cert_file_path": "EstiConsole/server.crt", - "key_file_path": "EstiConsole/server.key", + "cert_file_path": "./server.crt", + "key_file_path": "./server.key", "require_authentication": true, "enable_root": true, - "master_key_location": "EstiConsole/masterkey.key", + "master_key_location": "./masterkey.key", "servers": [ { "instance_name": "CTF", diff --git a/EstiConsole/esticonsole b/esticonsole similarity index 100% rename from EstiConsole/esticonsole rename to esticonsole diff --git a/EstiConsole/server.crt b/server.crt similarity index 100% rename from EstiConsole/server.crt rename to server.crt diff --git a/EstiConsole/server.key b/server.key similarity index 100% rename from EstiConsole/server.key rename to server.key