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
66
votes
5 answers

Docker - What is proper way to rebuild and push updated image to docker cloud?

What I'm currently doing: Dockerfile: FROM python:3.5.1 ENV PYTHONUNBUFFERED 1 RUN mkdir /www WORKDIR /www ADD deps.txt /www/ RUN pip3 install -r deps.txt ADD . /www/ RUN chmod 0755 /www/docker-init.sh Build command: docker build -t…
Alex T
  • 4,331
  • 3
  • 29
  • 47
35
votes
1 answer

Docker hub vs docker cloud

I have a small confusion between docker hub and docker cloud. I have docker images that I need to be installed in the client server and run the containers. I believe this can be done using docker hub which allows to push and pull docker images in my…
Jugi
  • 1,244
  • 3
  • 23
  • 51
6
votes
1 answer

How to correctly initialize git submodules in Dockerfile for Docker Cloud

We are building a Docker Container on Docker Cloud. The build process requires git submodules. To initialize the submodules for a local build we added the following line to the Dockerfile: RUN git submodule update --init…
Stefan Profanter
  • 6,458
  • 6
  • 41
  • 73
5
votes
1 answer

Update Nginx config file in a container with zero down time

We are using Nginx as a reverse proxy for docker-cloud services. A script is implemented to update the config file of Nginx whenever new service deploys on docker cloud or if service gets new url on docker-cloud. The Nginx and the script have been…
Matrix
  • 2,399
  • 5
  • 28
  • 53
5
votes
1 answer

How to delete Unreachable Nodes in Docker Cloud?

I moved a few clusters (and their nodes) in Docker Cloud to another account because we started to use the organizations feature. The nodes are already terminated on AWS, but they still have an "Unreachable" state. I can't find a way to delete the…
lukin
  • 471
  • 1
  • 4
  • 12
5
votes
1 answer

How to set up a volume linked to S3 in Docker Cloud with AWS?

I'm running my Play! webapp with Docker Cloud (could also use Rancher) and AWS and I'd like to store all the logs in S3 (via volume). Any ideas on how I could achieve that with minimal effort?
radek1st
  • 1,617
  • 17
  • 19
4
votes
0 answers

Setting up docker auto build to use docker-compose file

I am trying to set up auto builds using docker cloud/docker hub. It is always looking for Dockerfile when I have a docker-compose.yml. I am unable to find any option to change this. I am wondering whether this isn't possible or am I missing…
4
votes
1 answer

Using ccache in automated builds on Docker cloud

I am using automated builds on Docker cloud to compile a C++ app and provide it in an image. Compilation is quite long (range 2-3 hours) and commits on github are frequent (~10 to 30 per day). Is there a way to keep the building cache (using ccache)…
Denis Rouzaud
  • 2,412
  • 2
  • 26
  • 45
3
votes
0 answers

How to find child images on Docker Hub / GitHub

As a contributor to a popular Docker base image (baseimage-docker), I'd like to search for all public images which are child images of this image. Is there any way to do this, either via Docker Hub/Cloud's API, or via a GitHub code search? In GitHub…
hyperknot
  • 13,454
  • 24
  • 98
  • 153
3
votes
0 answers

Can't connect to my swarm

I imported my swarm to docker cloud. I have 2 machines in the cloud and the third machine is mine. I want to connect the swarm (meaning - running commands from one of the managers in my machine - worker node - currect me if I'm wrong). Connect to…
Stav Alfi
  • 13,139
  • 23
  • 99
  • 171
3
votes
0 answers

Docker cloud submodule authentication

I have a program that i want to autobuild through docker cloud but it has a submodule that it pulls aswell. I can build the image on my own machine but it always fail when I try to build. Building in Docker Cloud's infrastructure... Cloning into…
Hannan Rhodes
  • 123
  • 1
  • 2
  • 10
3
votes
3 answers

How do I use Docker on cloud or datacenter

I couldn't have enough courage to start using docker now I'm feel like came from last century. I want to clear my doubts about docker before get started. My question is mainly for deploying/running docker images on cloud or hosting environment. Can…
3
votes
1 answer

Backup Mongo in a Docker container

I have deployed an Mongo image in a Docker container via Docker Cloud. It is linked to a Meteor app. Is there any way to backup the data on the container?
DongWei
  • 31
  • 5
2
votes
0 answers

Docker Cloud Automated Build - Automatically Publish an Image for a Pull Request

I am exploring the automated build features of the "New Docker Hub". I see that it is possible to trigger automated tests for each new pull request that is submitted against a specific branch. Is it possible to push/publish the images created from a…
terrywb
  • 3,740
  • 3
  • 25
  • 50
2
votes
1 answer

Solr in Docker, How to create a distributed collection shared in mounted volume directory

I am trying to set a cloud of solars within docker. I am using docker-compose to bring the cloud up. I create a cloud, containing 3 zookeepers, and 4 solrs (solr1, solr2, solr3, solr4) containers. Creation of distributed collection of 4 shards and 2…
Szymon Roziewski
  • 956
  • 2
  • 20
  • 36
1
2 3 4 5 6 7