Difference between revisions of "ENTRYPOINT"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 10: Line 10:
 
  Ref: https://github.com/GoogleContainerTools/distroless
 
  Ref: https://github.com/GoogleContainerTools/distroless
  
 +
ENTRYPOINT ["/bin/bash", "[[bash -c|-c]]", "echo hello"]
  
 
  ENTRYPOINT [[service ssh restart]] && bash
 
  ENTRYPOINT [[service ssh restart]] && bash
Line 28: Line 29:
  
 
== See also ==
 
== See also ==
 +
* {{ENTRYPOINT}}
 
* {{container_definitions}}
 
* {{container_definitions}}
 
* {{RUN}}
 
* {{RUN}}

Latest revision as of 08:34, 22 October 2024

ENTRYPOINT ["myappthatworks"]
ENTRYPOINT ["executable", "param1", "param2"]
ENTRYPOINT command param1 param2
ENTRYPOINT "myappwillnotwork"
Ref: https://github.com/GoogleContainerTools/distroless
ENTRYPOINT ["/bin/bash", "-c", "echo hello"]
ENTRYPOINT service ssh restart && bash
COPY ./docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["postgres"]

Related[edit]

See also[edit]

Advertising: