Questions tagged [docker-ucp]

Docker-UCP(Docker Universal Control Plane) Deploy and manage Dockerized applications in production.

Docker Universal Control Plane provides an on-premises or virtual private cloud deployed management solution for Dockerized applications and infrastructure regardless of where your applications are running.

https://www.docker.com/products/docker-universal-control-plane

42 questions
17
votes
2 answers

Docker Registry vs Docker "Trusted" Registry

I just read the entire docs on securing a private Docker Registry. In addition to this, there seems to be a "Docker Trusted Registry", which is described as: Docker Trusted Registry (DTR) lets you run and manage your own Docker image storage…
smeeb
  • 27,777
  • 57
  • 250
  • 447
16
votes
5 answers

Docker compose set container name for stacks

I am deploying a small stack onto a UCP One of the issues I am facing is naming the container for service1. I need to have a static name for the container, since it's utilized by mycustomimageforservice2 The container_name option is ignored when…
Igor L.
  • 3,159
  • 7
  • 40
  • 61
3
votes
1 answer

How can I pass the argument to docker-compose.yml using shell file

I have docker-compose.yml as follows: version: '2' services: eureka-server: image: some-dtr-name/some-orgname/some-reponame:some-versionname mem_limit: somememory environment: SPRING_PROFILES_ACTIVE: some-profile …
2
votes
1 answer

Unable to install Docker DTR

I am trying to install docker DTR using a command mentioned below but getting failed Command: docker run -it --rm docker/dtr install \ --ucp-node mbk-srv-389-ub \ --ucp-username admin \ --ucp-url https://172.16.217.1 \ …
2
votes
1 answer

Missing values in istio-sidecar-injector kube configmap

I'm experiencing the same error that was answered here Istio manual sidecar injection gives an error I can't manually inject istio sidecar into an existing deployment. The solution of making sure the versions match doesn't help me. # kubectl apply…
James Forbes
  • 199
  • 1
  • 2
  • 14
2
votes
1 answer

Docker UCP Calico-node pod is unhealthy

We are using docker-ee Docker Enterprise 2.1 18.09.0-beta3 I installed UCP on one node and added worker nodes to it. The UCP shows node error as: "Calico-node pod is unhealthy: unexpected calico-node pod condition Ready". When I do the kubectl…
Satish
  • 21
  • 2
2
votes
2 answers

Docker Swarm: Calico node pod is unhealthy

Details: OS: RHEL 7.4 uname -r: 3.10.0-693.el7.x86_64 Docker version Client: Docker Enterprise Edition (EE) 2.0 Version: 17.06.2-ee-10 API version: 1.30 Go version: go1.8.7 Git commit: 66261a0 Built: Fri Apr 27 00:38:41 2018 …
CK5
  • 1,055
  • 3
  • 16
  • 29
2
votes
1 answer

Can I run the service on 443 port in docker UCP ??

I want to run a spring-boot microservice on port number 443. I am creating this service using docker command docker service create -p 443:8443 somerepo/someorg/some-service:v0.1 When I fire this command service goes fine, but DTR and UCP go down. I…
user7773583
1
vote
1 answer

Coexistence of UCP and HTTP server on Docker

I have a Docker EE running on a Host with IP 172.10.100.17. I have installed UCP using the default parameters and I have also deployed nginx container with host port 443 mapped to 443 on the container. docker run -it --rm --name ucp -v…
Bharath
  • 358
  • 2
  • 9
1
vote
1 answer

How to get a single stack from Docker UCP API

I'm writing devops pipelines in a Docker Enterprise 3.2 environment. I am able to fetch all stacks from the UCP API. Now I need to fetch single stacks but the documentation seems to omit completely this resource. Is there anything…
avi.elkharrat
  • 6,100
  • 6
  • 41
  • 47
1
vote
1 answer

Docker Unable to reconcile state of Kubernetes addons component

I have installed 18.09 on a new RHEL V7.6 image. I am trying to install UCP 3.1.0. I uninstalled 3.1.0 and installed 3.1.2. Still got the error. I am working on the Leader and right now the only node. I am behind a proxy, i have created…
fsejoseph
  • 21
  • 5
1
vote
1 answer

How to install Docker UCP and DTR installation on AWS EC2 instance. How to access UCP UI..?

docker run --rm -it --name ucp -v /var/run/docker.sock:/var/run/docker.sock docker/ucp install -i --swarm-port 3376 --controller-port 4443 How to install Docker UCP and DTR installation on AWS EC2 instance. How to access UCP UI? When am trying to…
1
vote
0 answers

How to host node.js service on UCP using Jenkins

I Have Multiple node service's. I want to deploy these service as a docker container in UCP. I am using Jenkins for CI CD. Using docker api (docker tag/push/) I am able to push the image into DTR. My Question is how can how to host the docker…
Anand Deshmukh
  • 1,086
  • 2
  • 17
  • 35
1
vote
1 answer

How to restrict docker push to certain tags

Is there a way using UCP that we can limit certain users to push only to certain tags for example, deny push to abc/batch_scheduler:1.0.0 but let them push to abc/batch_scheduler:dev123 ? Thank you in advance.
cbrdy
  • 792
  • 1
  • 8
  • 27
1
vote
1 answer

Error response from daemon: Get https://x.x.x.x/v1/users/: x509: certificate signed by unknown authority

I'm new in docker and I testing some stuffs. I had installed a UCP to upload my images but when I wanted login to UCP with CLI showed this error: Error response from daemon: Get https://x.x.x.x/v1/users/: x509: certificate signed by unknown…
DrakoRod
  • 31
  • 8
1
2 3