skip to Main Content

Make the same thing made with docker-compose on k8s – Nginx

Is there a way to run the docker-compose app identically on k8s? Currently the content of my docker-compose.yml file is as follows: version: "3" services: registry: restart: always image: registry:2 ports: - 5000:5000 environment: REGISTRY_HTTP_TLS_CERTIFICATE: /certs/domain.crt REGISTRY_HTTP_TLS_KEY: /certs/domain.key REGISTRY_AUTH: htpasswd…

VIEW QUESTION
Back To Top
Search