docker Questions
2
I have a simple Spring Boot API project that runs well when I execute a bootable jar file on my local machine or a docker image on Google Kubernetes Engine but emits errors when using docker run on...
Arrowood asked 17/5, 2021 at 6:54
3
In my docker compose service I have the following:
volumes:
- ~/DockerStuff/Projects:/root/Documents/Projects
- ~/DockerStuff/Downloads:/root/Downloads
But when I run docker compose up I'm being...
Volta asked 14/6, 2021 at 10:1
5
I have Artifactory Pro Docker image version 5.4.5 set up. I am using Nginx as well with HTTPS enabled using self-signed certificate. When I try running docker pull command, i get error:
[root@tom ...
Pensioner asked 31/5, 2019 at 17:38
4
I am getting this error when I try to push a docker container
denied: Your Authorization Token has expired.
I had aws ecr get-login --no-include-email --region us-east-1, I tried the hack someone ...
Angola asked 7/6, 2017 at 21:23
3
I would like to make a docker-compose which starts ollama (like ollama serve) on port 11434 and creates mymodel from ./Modelfile.
I found a similar question about how to run ollama with docker comp...
Choleric asked 6/5 at 18:3
3
Solved
Description
I'm trying out the service containers for integrated database tests in azure devops pipelines.
As per this opensourced dummy ci cd pipeline project https://dev.azure.com/funktechno/_git...
Detestable asked 22/8, 2020 at 16:24
5
Solved
Is there a way to let Docker list all the available image versions that can be downloaded?
Let's say I want to get the latest version of Apache, then I could type this:
docker pull httpd:latest
...
2
Solved
I want install new device in my docker container.
I had dowload new sdk
./sdkmanager "system-images;android-23;google_apis;x86"
I had accept all licences
./sdkmanager --licenses
And now I ...
Heeled asked 6/11, 2018 at 7:27
2
I have Docker installed on my Windows OS. There is my volumes filed of docker-compose.yml:
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
I just can't figure out how /var/run/docker.soc...
Sorkin asked 9/5, 2019 at 18:3
1
I'm trying to get Nginx to run with minimal privileges while being able to act as a proxy on port 80. In other words, this is the securityContext I'm working with:
securityContext:
allowPrivilege...
Vanmeter asked 31/3, 2023 at 12:58
5
Solved
i was containerizing my .Net + React.js application but during the process I have encountered an unexpected error. I got myself acquainted with similar posts but none of the solutions solved my pro...
3
I've set up a docker configuration to run my React app, but when starting the container, I encounter the following error:
frontend-1 | failed to load config from /app/vite.config.ts
frontend-1 | er...
Duroc asked 16/4 at 18:35
6
I'm just getting started with kuberneted on Windows 10.
I downloaded the bits from here.
While attempting to start minikube from powershell:
PS C:\WINDOWS\system32> minikube start --vm-driver=...
Eras asked 2/12, 2017 at 1:32
7
Solved
I try to build istio (1.6.0+) using Jenkins and get an error:
docker: Error response from daemon: invalid mount config for type "bind":
bind mount source path does not exist: /home/jenkin...
Rutabaga asked 20/4, 2020 at 6:14
3
Solved
I have a PHP application running on docker and based on php:7.3-alpine3.9
For a big form, I am posting more than 1000 inputs, and I not only I get the error
Warning: Unknown: Input variables exce...
Expecting asked 8/8, 2019 at 13:40
4
Solved
Gitlab CI keeps ignoring the sql-files in /docker-entrypoint-initdb.d/* in this project.
here is docker-compose.yml:
version: '3.6'
services:
testdb:
image: postgres:11
container_name: lbsn-...
Deen asked 8/5, 2019 at 17:20
3
I am trying to use Ubuntu 20 or Ubuntu 22 in Docker. My Dockerfile is:
from ubuntu:22.04
run DEBIAN_FRONTEND=noninteractive apt update
I build this with docker build .. The result is:
Sending buil...
3
Solved
I am using docker compose and this is my yaml file
web:
dockerfile: Dockerfile-dev
build: .
command: gulp
volumes:
- .:/app
ports:
- '9001:9001'
and here is my docker file
FROM node:0.12...
Marilumarilyn asked 23/10, 2015 at 7:45
8
Solved
I have written a Dockerfile which uses as an image an private adapted Alpine image, which contains a nginx server.
Note: Alpine uses sh, not Bash.
I love to have some shell aliases available, when ...
Indian asked 23/2, 2021 at 12:34
3
When you restart your Synology Nas The docker container stops.
Tell us how you can be restarted automatically turn on the docker container.
2
This might be a completely lame question, but I was going through the different directive examples of docker-compose and a thought came to my mind.
Is there a syntax or a code-book that specifies ...
Becoming asked 4/4, 2018 at 6:58
1
This dockerfile works as expected. But the problem is that I am not able to change the source of volume.
version: "3.5"
services:
mysql:
environment:
MYSQL_ROOT_PASSWORD: india3391
image: shan...
Myrica asked 23/6, 2018 at 6:13
4
I have a docker image on my local machine. When I try to run the image using the below Jenkins file.
agent {
docker {
image 'gcc/sample:latest'
args "-v /etc/passwd:/etc/passwd:ro
}
}
Then I ...
Archon asked 16/3, 2018 at 14:10
5
Solved
I'm planning to use Docker to deploy a node.js app. The app has several dependencies that require node-gyp. Node-gyp builds these modules (e.g. canvas, lwip, qrcode) against compiled libraries on t...
Willena asked 5/6, 2017 at 15:2
2
Solved
I have a Postgres DB running in a Docker environment which is set up using FluentDocker in a Xunit test.
Xunit is configured to run tests serial.
When running a single test, everything works fine.
...
Giamo asked 13/6, 2022 at 10:6
© 2022 - 2024 — McMap. All rights reserved.