skip to Main Content

Redis – docker-compose ps does not show container when generated with multiple Compose configurations

I am trying to share Compose configurations between different projects using the same postgres database and redis server. For that, I have three different Compose configurations. ./docker-compose.base.yml ./apps/app1/docker-compose.extended.yml ./apps/app2/docker-compose.extended.yml I create and start the containers with the following command: docker-compose…

VIEW QUESTION

ERROR: The Compose file './docker-compose.yml' is invalid because: services.jenkins.networks contains an invalid type – CentOS

ERROR: The Compose file './docker-compose.yml' is invalid because: services.jenkins.networks contains an invalid type, it should be an array, or an object version: '3' services: jenkins: container_name: jenkins image: jenkins ports: - "8080:8080" volumes: - "$PWD/jenkins_home:/var/jenkins_home" networks: -net networks: net: Docker-Compose…

VIEW QUESTION

Docker container startup hangs while trying to run voting app – CentOS

I did the following: https://github.com/dockersamples/example-voting-app cd example-voting-app Inside that there are number of files/folders MAINTAINERS LICENSE Jenkinsfile ExampleVotingApp.sln README.md docker-stack-windows-1809.yml docker-stack-simple.yml docker-compose.yml docker-compose-windows.yml docker-compose-windows-1809.yml docker-compose-simple.yml docker-compose-k8s.yml docker-compose-javaworker.yml architecture.png kube-deployment.yml k8s-specifications docker-stack.yml docker-stack-windows.yml result vote worker I did cd vote and…

VIEW QUESTION
Back To Top
Search