diff options
author | Jonas Zohren <git-pbkyr@jzohren.de> | 2022-02-02 14:07:35 +0100 |
---|---|---|
committer | Jonas Zohren <git-pbkyr@jzohren.de> | 2022-02-02 14:07:35 +0100 |
commit | e5bac5e4f53fa3e6565cca96b687dc8ff976f7f0 (patch) | |
tree | b6da96b85db6f2ff65a04f1b6fa7287297f497d4 /docker | |
parent | 9478c75f9dcd040cb9f03deb5ea809f117985de2 (diff) | |
download | conduit-e5bac5e4f53fa3e6565cca96b687dc8ff976f7f0.zip |
fix: Running in Docker
Diffstat (limited to 'docker')
-rw-r--r-- | docker/ci-binaries-packaging.Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docker/ci-binaries-packaging.Dockerfile b/docker/ci-binaries-packaging.Dockerfile index bb67bb2..3731bac 100644 --- a/docker/ci-binaries-packaging.Dockerfile +++ b/docker/ci-binaries-packaging.Dockerfile @@ -14,8 +14,9 @@ FROM docker.io/alpine:3.15.0 AS runner # You still need to map the port when using the docker command or docker-compose. EXPOSE 6167 -# Note from @jfowl: I would like to remove this in the future and just have the Docker version be configured with envs. -ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml" +# Note from @jfowl: I would like to remove the config file in the future and just have the Docker version be configured with envs. +ENV CONDUIT_CONFIG="/srv/conduit/conduit.toml" \ + CONDUIT_PORT=6167 # Conduit needs: # ca-certificates: for https |