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

Docker hub/store doesn't show build information

I'm having problems with docker continuous integration. I setup automated builds in cloud.docker.com for my project, but there is not information at all either in their webs (hub/store) or their api, which shows that my build is not…
Ivan Beldad
  • 2,285
  • 2
  • 21
  • 33
1
vote
1 answer

Docker Cloud automated builds - no such file or directory

Running a build of Maven based project but it fails. The reason is no such file or directory when it tries to find the jar. Dockerfile: FROM frolvlad/alpine-oraclejdk8:slim FROM maven:3.5.2-jdk-8-slim VOLUME /tmp CMD ['mvn package'] ADD…
WildDev
  • 2,250
  • 5
  • 35
  • 67
1
vote
1 answer

How can I debug dist/ is not generating on Docker Cloud Build?

I’m trying to automate build on dockercloud to build a docker container for my front-end. I have web.dockerfile ### STAGE 1: Build ### FROM node:9.3.0-alpine as builder COPY package.json ./ RUN npm set progress=false && npm config set depth 0 &&…
code-8
  • 54,650
  • 106
  • 352
  • 604
1
vote
0 answers

Running a one off command in a docker cloud stack

I deployed a stack to a docker cloud (cloud.docker.com not in swarm mode). Everything is running fine but I have a postgres database. I have a separate container that contains scripts to initialize the structure of the database (I need certain…
leifg
  • 8,668
  • 13
  • 53
  • 79
1
vote
2 answers

What is the best way pull updated changes into the Docker containers that already deployed?

I had to perform these steps to deploy my Nodejs/Angular site to AWS via DockerCloud Write Dockerfile Build Docker Images base on my Dockerfiles Push those images to Docker Hub Create Node Cluster on DockerCloud Account Write Docker stack file on…
code-8
  • 54,650
  • 106
  • 352
  • 604
1
vote
1 answer

How to keep docker host machine up to date automatically?

Say I have 10 docker host machines and I need to keep them up to date due to compliance reasons. The (manual) steps would be: 1. Drain node 2. ssh into node 3. Perform update (and maybe reboot) 4. Undrain node How do I get these steps to happen…
Igor Gatis
  • 4,648
  • 10
  • 43
  • 66
1
vote
0 answers

List all ip addresses for the same service within docker swarm

I am using docker cloud and I want a service where all of the containers can locate all the other containers in the same service. The end goal is to create an erlang cluster. I have been reading through this part of the getting started…
Peter Saxton
  • 4,466
  • 5
  • 33
  • 51
1
vote
0 answers

Docker Cloud autotest doesn't exit after running tests

I'm trying to automatically test PRs to my project using Docker Cloud. I've set up a build rule as follows: Dockerfile: FROM node:8.4.0-alpine ENV NODE_ENV=production WORKDIR /olimat/api COPY package.json package-lock.json ./ RUN npm install…
Josias Iquabius
  • 1,219
  • 11
  • 11
1
vote
0 answers

Docker Cloud Autotest doesn't shows all services logs

I'm using DockerCloud Repositories Autotest to test a service before image push. This is my docker-compose.test.yml: version: '3' services: sut: build: . command: run_tests.sh depends_on: - test-dep test-dep: image:…
lifeisfoo
  • 15,478
  • 6
  • 74
  • 115
1
vote
0 answers

Deploying Docker Data Volumes

How do I deploy a named data volume, with contents, to nodes in a swarm? Here is what I want to do, as described in the Docker documentation: “Consider a situation where your image starts a lightweight web server. You could use that image as a base…
HieroB
  • 3,917
  • 4
  • 17
  • 22
1
vote
1 answer

net::ERR_CONTENT_LENGTH_MISMATCH on angular 2 on docker cloud

I am getting a net::ERR_CONTENT_LENGTH_MISMATCH main.bundle.js while running angular 2 on docker cloud ,the same however works on my local docker instance The below is the docker file FROM node RUN mkdir -p /usr/src/app WORKDIR…
John Kiragu
  • 101
  • 1
  • 10
1
vote
1 answer

haproxy not routing to service

I have the following configuration for my stack: api: deployment_strategy: every_node environment: - 'DATABASE_URL=postgresql://.....' - REDIS_HOST=redis image: 'image/image:latest' links: - redis ports: - '5000:5000' lb: …
Luiz E.
  • 6,769
  • 10
  • 58
  • 98
1
vote
0 answers

Connect to Docker Swarm for Continuous deploy

Any suggestions on how best to connect to a swarm for continuous deploy (within CI)? I'm using docker cloud, and CircleCI 2. Tried dockercloud/client e.g. docker run --rm -ti -v /var/run/docker.sock:/var/run/docker.sock -e DOCKER_HOST…
1
vote
1 answer

connecting Docker to a cloud provider, Amazon AWS

Context: I was going though Link to Amazon Web Services to create Swarms, in order to connect to my provider. The role was created with success. Then, while creating the policy, to associate to the role, a problem happened. Problem: An error…
Tiago Martins Peres
  • 14,289
  • 18
  • 86
  • 145
1
vote
0 answers

Docker cloud: weave cannot join the network

We are using non-swarm mode for our cluster of 3 machines with a bunch of links set up between containers and noticed a very strange problem: containers between 2 specific machines cannot communicate: containers on Machine A can talk to Machine B,…
Anton
  • 2,483
  • 2
  • 23
  • 35