Skip to content

Commit cc8b7c9

Browse files
committed
fix bug where image cannot receive commands (load, help)
1 parent 9433030 commit cc8b7c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/simple/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ EXPOSE 5701
4949

5050
# this is to run from the war file directly, preferred approach unzips war file in advance
5151
# ENTRYPOINT ["java", "-jar", "moqui.war"]
52-
ENTRYPOINT ["java", "-cp", ".", "MoquiStart", "port=80"]
52+
ENTRYPOINT ["java", "-cp", ".", "MoquiStart"]
5353

5454
HEALTHCHECK --interval=30s --timeout=600ms --start-period=120s CMD curl -f -H "X-Forwarded-Proto: https" -H "X-Forwarded-Ssl: on" http://localhost/status || exit 1
5555
# specify this as a default parameter if none are specified with docker exec/run, ie run production by default
56-
CMD ["conf=conf/MoquiProductionConf.xml"]
56+
CMD ["conf=conf/MoquiProductionConf.xml", "port=80"]

0 commit comments

Comments
 (0)