Questions tagged [docker-cloud]

Docker Cloud is a service for managing and deploying Dockerized applications.

Docker Cloud is a service provided by Docker for managing nodes on your own servers or various cloud hosting providers, such as AWS, Azure, or DigitalOcean. Use this tag for questions related to Docker Cloud tools and the Docker Cloud API.

Resources

Related Tags

95 questions
1
vote
1 answer

Setup Continuous Integration with docker cloud and spring boot

I'm trying to setup Continuous Integration with docker cloud and spring boot app. I want to use repository feature of docker cloud and build new container when new push occurs in some branch. But I can't write correct Dockerfile because built jar…
1
vote
1 answer

Running a cronjob or task inside a docker cloud container

I got stuck and need help. I have setup multiple stacks on docker cloud. The stacks are running multiple container like data, mysql, web, elasticsearch, etc. Now I need to run commands on the web containers. Before docker I did this with cronjob…
Kersten
  • 1,662
  • 3
  • 16
  • 28
1
vote
0 answers

What are default credentials for docker cloud Ubuntu node?

I created a Ubuntu 14.04.5 x64 node on Digital Ocean via Docker cloud and deployed couchdb service on this node successfully. However, the service is not available with http://:5984/_utils/config.html url. I wanted to connect to Ubuntu node via…
1
vote
0 answers

My nodes Digital Ocean are UNREACHABLE from docker cloud

I have worked with docker cloud for a month. My nodes are created as described at https://docs.docker.com/docker-cloud/infrastructure/link-do/ for a Digital Ocean account. But I've decided to update the operating system of the node (I access through…
1
vote
1 answer

Does a cloud-docker private repo sleep like Heroku dynamo?

I know that a free Heroku Dynamo sleeps after 30 minutes of inactivity. I can notice a significant start-up time for the first request. Does the same apply to a free private repo on cloud.docker.com? For my hobby project, which is better?
Sai
  • 2,089
  • 3
  • 19
  • 30
1
vote
0 answers

Docker Cloud Service Discovery Two Containers

In DockerCloud I am trying to get my container to speak with the other container. I believe the problem is the hostname not resolving (this is set in /conf.d/kafka.yaml shown below). To get DockerCloud to have the two containers communicate, I have…
JREAM
  • 5,741
  • 11
  • 46
  • 84
1
vote
1 answer

Docker Swarm vs. Docker Cluster

I created a swarm cluster via docker-machine -d azure --swarm --swarm-master --swarm-discovery token://SWARM_CLUSTER_TOKEN my-swarm-master and docker-machine -d azure--swarm --swarm-discovery token://SWARM_CLUSTER_TOKEN my-node-01 After that, I…
Munchkin
  • 4,528
  • 7
  • 45
  • 93
1
vote
1 answer

How to fast failover nginx upstream containers in docker (blue/green deployment)

How can I get dockerized nginx to failover quickly when one of the upstream containers goes down? Failover seems instantaneous in a non-docker environment, but several requests timeout when dockerized. I'm using nginx as a load balancer/proxy on a…
David Budiac
  • 811
  • 2
  • 9
  • 21
1
vote
0 answers

Cannot detect Linux distribution or it’s unsupported

Getting this error when run this command which was given by the web dashboard(changed the key to *) sudo curl -Ls https://get.cloud.docker.com/ | sudo -H sh -s f74************************* ERROR: Cannot detect Linux distribution or it's…
WCO
  • 480
  • 5
  • 8
1
vote
1 answer

Docker Cloud Disable service endpoints

I might not fully understand this but I shall try and explain. My aim is to disable the urls that are generated for services and container endpoints in docker cloud. It is my understanding that unless you publish the port only other local…
SJC
  • 2,767
  • 4
  • 20
  • 31
1
vote
1 answer

Error: duplicated outer port

I've been following this tutorial on docker cloud: https://docs.docker.com/docker-cloud/apps/load-balance-hello-world/ I've been getting errors when trying to expose port 80 using haproxy. DEFAULT when i check port 80, the ports move and port…
jdkealy
  • 4,807
  • 6
  • 34
  • 56
1
vote
1 answer

Docker: How to connect to Postgresql container without exposing port

I set up an Elixir / Phoenix app in a docker container and a separate container for a Postgresql server. I can only connect to the Postgresql server when I expose the 5432 port. But I don't want the port to be public since this is pretty unsafe. The…
Ole Spaarmann
  • 15,845
  • 27
  • 98
  • 160
0
votes
1 answer

How to expose locally dockerized postgres service to the net

Context: I'm building a full stack project and have decided to deploy my services on docker, I have 3 services at the moment, database-service, frontend-service, and backend-service, in addition to postgres and pgadmin. I have set up a…
Ahmed Zrouqui
  • 356
  • 1
  • 4
  • 13
0
votes
1 answer

GoogleCloudPlatform/gcr-cleaner cannot delete the stale images

I am trying to use the gcr-cleaner that recommended by google to clean up my stale images. However, it cannot delete anything as expected even if it returns me it executes successfully. I have granted the browser, cloud run admin, service account…
0
votes
1 answer

Jenkins gets stuck when switching user within docker container

I am running Jenkins within a Docker container on a remote server. In one of my pipelines I am using a Yocto build container to build a image. In this case I have to change the user, because Bitbake does not allow building with root…