docker Questions

11

Solved

I've got a docker-compose.yml like this: db: image: mongo:latest ports: - "27017:27017" server: image: artificial/docker-sails:stable-pm2 command: sails lift volumes: - server/:/server por...
Higbee asked 26/7, 2016 at 7:45

15

Solved

I am trying to setup minikube in a VM with ubuntu desktop 20.04 LTS installed, using docker driver. I've followed the steps here, and also taken into consideration the limitations for the docker dr...
Denotation asked 21/12, 2020 at 17:9

6

Solved

I am new to Docker, and I would like to list the stopped containers. With docker ps: sudo docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES Nothing appears, because I restarted th...
Commanding asked 19/7, 2016 at 8:32

1

My action endpoints are usually http://localhost:50000/Method/egFunction but when I run the app on a docker container, I am not able to call the api endpoint, I get errors instead. I use docker-com...
Delegate asked 14/11, 2018 at 16:38

3

I'm new to docker and trying the simplest docker-compose.yml showing an hello world page to build on top of that with eventually a full LEMP stack that would have the same config as my server. Howe...
Delsiedelsman asked 5/6, 2018 at 17:30

6

I am trying to build a docker image on my windows machine and I keep getting this error: [+] Building 2.1s (12/15) => [internal] load build definition from Dockerfile 0.0s => => transfe...

2

I am trying to build a multi-arch image but would like to avoid pushing it to docker hub. I've had a lot of trouble finding out how to control the export options. is there a way to make "--pus...
Facsimile asked 19/11, 2021 at 23:22

9

Solved

I'm remotely connecting to a school server (Ubuntu 20.04.2 LTS) through Visual Studio Code (VScode, version 1.66) to perform some tasks, and today I follow docker.com (https://docs.docker.com/engin...
Delaware asked 10/4, 2022 at 8:55

3

There's Docker buildkit: https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/experimental.md which has an extra option to RUN (amongst others): the --mount=type=cache. What I coul...
Ledesma asked 10/7, 2020 at 12:56

3

Is is possible, using only docker-compose, to mount multiple nginx containers on the same host machine, with each container sharing port 80? I want to tidy up a system that runs multiple applicat...
Entasis asked 30/10, 2017 at 9:1

4

Solved

I have to execute two commands on the docker file, but both these commands are attached to the terminal and block the execution from the next. dockerfile: FROM sinet/nginx-node:latest RUN mkdir /u...
Cally asked 23/7, 2019 at 17:18

3

What are the differences between DockerHub and GitHub? Can DockerHub replace GitHub or is it only for the Images? If yes, how it is different from Nexus and other binary management tools?
Heart asked 9/2, 2017 at 19:24

2

Solved

According to https://docs.docker.com/registry/spec/api/ I can call /v2/<name>/tags/list to get a list of the tags for a given image. It works fine, e.g.: {"name"=>"avi/test&...
Expression asked 3/2, 2016 at 20:7

3

Solved

I have a simple docker file of FROM ubuntu:18.04 COPY . /usr/src/app/ COPY docker_files/.bash_aliases /root/ $ docker build -t dock . Sending build context to Docker daemon 146.9kB Step 1/3 : FRO...
Copyread asked 12/4, 2019 at 20:49

4

Solved

I'm currently developing an application using Next.js and Nginx in Docker. CSS doesn't work after I build a project and check the display in the browser like below. How could I resolve this problem...
Whitnell asked 4/4, 2022 at 15:7

9

Solved

I am running the below yaml script to build docker images and push into kubernetes cluster but at the same time I wanted to enable docker layer caching in the azure DevOps while building the yaml s...
Stifle asked 10/12, 2019 at 11:56

4

Solved

I see that ~/.dockercfg has your login credentials, but it is your email and not your username. I see that running docker login displays your username and prompts you to change it. But, you can you...
Duality asked 29/3, 2015 at 7:32

10

Solved

I have a system where I'm trying to run the docker logincommand, it is a headless linux system, but unfortunately only the Docker Credentials Helper docker-credential-secretservice is installed. T...
Sofia asked 15/3, 2019 at 17:35

7

Solved

When pushing a docker image to registry, I got this message: docker push -t domain.com/repo/tag_docker_name:latest Error tag name does not exist The only way is to create the tag in docker reposi...
Golightly asked 14/4, 2018 at 17:51

3

Solved

I am trying to perform a table creation using pyodbc on a SQL Server 2017 database hosted using Docker. I'm also using a network so that I can connect to it later from another Docker image. However...
Cabaret asked 14/2, 2020 at 7:6

2

I tried to just use below setting but turn out the header and footer positions will be changed. Please advise. await page.pdf({ path: FILENAME, format: 'A4', margin: { top: "0px", right: "0px...
Southeast asked 17/10, 2019 at 5:6

3

Solved

Running $ docker-compose up when I have my docker-compose.yml as the following, everything works as expected: app: build: . However when I have docker-compose.yml as (which appears to valid wi...
Fool asked 1/12, 2016 at 18:18

3

I tried to run the playwright in docker but got this error: browserType.launch: Host system is missing dependencies! Missing libraries are: libvpx.so.6 libicui18n.so.66 libicuuc.so.66 libwoff2...
Byssus asked 20/1, 2021 at 2:37

6

If I have a docker file that has multiple stages (such as base and build), is there a way to change the docker command that visual studio uses when debugging the container - it seems to use the fir...
Radiometer asked 27/12, 2017 at 22:50

31

While I am trying to start with docker on my windows 10 machine it is returning the following error. ERROR: open \.\pipe\docker_engine_linux: The system cannot find the file specified. I found when...
Jamnis asked 9/8, 2020 at 19:38

© 2022 - 2024 — McMap. All rights reserved.