이 공식 문서에서는 yaml 구성 파일에서 명령을 실행할 수 있습니다.
apiVersion: v1
kind: Pod
metadata:
name: hello-world
spec: # specification of the pod’s contents
restartPolicy: Never
containers:
- name: hello
image: "ubuntu:14.04"
env:
- name: MESSAGE
value: "hello world"
command: ["/bin/sh","-c"]
args: ["/bin/echo \"${MESSAGE}\""]
둘 이상의 명령을 실행하려면 어떻게해야합니까?
command
Dockerfile을 재정의하므로 확장 할 수있는 좋은 사용 사례도 있다고 생각합니다Entrypoint
.)