Browse Source

cleaner startup exec in order to build the image and run the container with podman/libpod

pull/720/head
Gernot Nusshall 5 years ago
parent
commit
748c825202
  1. 3
      docker/amd64/mysql/Dockerfile.alpine
  2. 3
      docker/amd64/postgresql/Dockerfile.alpine
  3. 3
      docker/amd64/sqlite/Dockerfile.alpine

3
docker/amd64/mysql/Dockerfile.alpine

@ -82,4 +82,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh
HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
# Configures the startup!
CMD ["./bitwarden_rs"]
WORKDIR /
CMD ["/bitwarden_rs"]

3
docker/amd64/postgresql/Dockerfile.alpine

@ -83,4 +83,5 @@ COPY docker/healthcheck.sh ./healthcheck.sh
HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
# Configures the startup!
CMD ["./bitwarden_rs"]
WORKDIR /
CMD ["/bitwarden_rs"]

3
docker/amd64/sqlite/Dockerfile.alpine

@ -77,4 +77,5 @@ HEALTHCHECK --interval=30s --timeout=3s CMD sh healthcheck.sh || exit 1
# Configures the startup!
CMD ["./bitwarden_rs"]
WORKDIR /
CMD ["/bitwarden_rs"]

Loading…
Cancel
Save