diff --git a/Dockerfile b/Dockerfile deleted file mode 120000 index 894720b..0000000 --- a/Dockerfile +++ /dev/null @@ -1 +0,0 @@ -docker/debian/Dockerfile \ No newline at end of file diff --git a/OCI/README.md b/OCI/README.md new file mode 100644 index 0000000..dc8a1b7 --- /dev/null +++ b/OCI/README.md @@ -0,0 +1,11 @@ +# OCI +**Note:** You need to be in the root path of the repo! + +Build local docker image: +``` +$ docker build -t sos-milter:local -f OCI/Dockerfile . +``` +Run it (with default ENV-values!): +``` +$ docker run -d sos-milter:local +``` diff --git a/app/sos-milter.py b/app/sos-milter.py index 740a3aa..bd90a86 100644 --- a/app/sos-milter.py +++ b/app/sos-milter.py @@ -345,7 +345,7 @@ if __name__ == "__main__": raise_exceptions=True, client_strategy='RESTARTABLE' ) - logging.info("LDAP-Connection steht. PID: " + str(os.getpid())) + logging.info("LDAP-Connection established. PID: " + str(os.getpid())) except LDAPException as e: print("LDAP-Exception: " + traceback.format_exc()) sys.exit(1)