docker-compose.yml
version: '3'services:web:build: .ports:- "5000:5000"volumes:- .:/code- logvolume01:/var/loglinks:- redisredis:image: redisvolumes:logvolume01: {}
k8s
apiVersion: v1kind: Podmetadata:name: hello-worldspec:restartPolicy: OnFailurecontainers:- name: helloimage: "ubuntu"command: ["/bin/echo","hello”,”world"]
