Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [docker]

For questions about building and running Docker containers. DOCKER QUESTIONS MUST BE SPECIFICALLY RELATED TO SOFTWARE DEVELOPMENT. Suitable topics include Dockerfiles, Docker Compose, and architecture. As a rule of thumb, if your question is about something happening inside the container, it's probably on-topic here; if it's outside the container, it is probably off-topic.

docker
-1 votes
1 answer
76 views

installation not allowed to Write organization package error in Github action when pushing docker image

In the step, 'Push image' of my GitHub action I got error like below. denied: installation not allowed to Write organization package Error: Process completed with exit code 1. This issue is related ...
0 votes
1 answer
206 views

Pytest in docker runs tests of venv files

I am following https://testdriven.io/courses/tdd-fastapi/pytest-setup/, but when running docker-compose exec web python -m pytest for the first time, I get collected 212 items / 24 errors instead of ...
-2 votes
2 answers
320 views

Cannot connect to chrome at 127.0.0.1:53233, This version of ChromeDriver only supports Chrome version 114. Current browser version is 127.0.6533.72

driver code: from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support ...
0 votes
1 answer
216 views

Passing Python click options to an ENTRYPOINT using docker run gives error: "executable file not found in $PATH"

I have a simple python script that I want to run inside of a docker container. It prints a one-line message "Hello {name}". The python script uses the click CLI interface to define the ...
11 votes
4 answers
39k views

docker login on private nexus => Error response from daemon: login attempt to http://ip:port/v2/ failed with status: 404 Not Found

I try to push a docker image to my private Nexus 3 registry. Before to push, i try to authenticate doing : docker login nexus_host:nexus_port But i got the following error message : Error ...
0 votes
0 answers
12 views

Custom Github Action - Access Github Secrets / environment variable

I'm creating a custom Github Action. I'd like to share this action with others. The issue I'm facing is that within the action code I need to use an API. I'd like to be able to have my code in the ...
0 votes
0 answers
20 views

How can i know why it's not showing the database in pgadmin?

I totally sure that in docker postgres is working well because when i make this query irb(main):001> User.all i am getting this result: User Load (4.8ms) SELECT "users".* FROM "...
0 votes
1 answer
17 views

Starting process in docker separate from entrypoint

I am using a docker image whose base image is bookworm-slim. I think the image doesn't have a way to queue up startup services (perhaps I have to install that as well?), but I want to run CRON ...
0 votes
1 answer
5k views

Permission denied when docker build

I know there are a lot of questions with similar title but none of them is similar to my issue. My problem is simple, I'm trying to install a few packages in my dockerfile using the command ...
1 vote
3 answers
2k views

communicate between nginx and php-fpm podman

I want to set-up an nginx with php-fpm for running a symfony. To do that I create a pod call webservice : podman pod create --name webservice -p 8080:80 And I launch a php-fpm : podman run -ti \ --...
0 votes
0 answers
10 views

Azure Machine Learning Studio integration with rocker Rstudio: Git tab is not appearing for an Rproject set up with GitHub repository

I am running and Rproject with GitHub version control in Rstudio within a compute instance in Azure Machine Learning Studio. The Rproject was previously set up outside of Azure MLS and is running ...
0 votes
0 answers
8 views

does vault agent generate approle secret id after it expire?

I inject the role ID and secret ID of Hashicorp vault using Jenkins during the build stage of my app docker image. Then, the vault agent read the role ID and secret ID connect to vault and deliver ...
-1 votes
0 answers
19 views

Error when starting a minecraft server in a container in docker [closed]

I was trying to start my minecraft server, hosted on the free plan of nether hosting, i put plugins etc. Then i go to console and i try to start my server [NY-01-F Daemon]: Checking server disk space ...
61 votes
5 answers
178k views

Ubuntu and updating Docker

I am trying to run the latest stable version of docker and docker-compose. I am following the instructions on https://docs.docker.com/engine/installation/linux/ubuntulinux/ Apparently the current ...
1 vote
1 answer
317 views

set default value of an ENV variable in Dockerfile

I have a custom base image where I have set some environment variable during the build, this way: Dockerfile of the base image FROM oraclelinux:7-slim ... ENV JAVA_HOME=/usr/java/jdk-8 ... Then I use ...

15 30 50 per page
1
2 3 4 5
9261