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
0 votes
0 answers
13 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 ...
says's user avatar
  • 119
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 ...
Pali's user avatar
  • 77
0 votes
0 answers
22 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 "...
information's user avatar
0 votes
0 answers
11 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 ...
C_goetsch's user avatar
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 ...
habib ammar's user avatar
-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 ...
diabetico's user avatar
0 votes
0 answers
16 views

My laravel project running with docker in Ubuntu does not see images [closed]

I am developing a laravel project using docker and I have a home/user/projects/myProject project in ubuntu to make this project faster. The problem is that my images are not showing up in "...
Enes SvG's user avatar
0 votes
0 answers
28 views

Why is the .git Folder Not Copied and How Can I Fix the Error in My Dockerfile?

I created a Dockerfile to build my Angular application with Nx: FROM node:alpine3.19 AS builder WORKDIR /app RUN apk update && apk add git COPY .git .git COPY yarn.lock package.json .npmrc ...
Jon You's user avatar
  • 59
0 votes
1 answer
17 views

Authentication failed while connecting to docker-compose mongodb via springboot application

docker-compose.yml version: '4' services: mongodb: image: mongo:7.0.5 container_name: mongodb ports: - "27017:27017" environment: MONGO_INITDB_ROOT_USERNAME: ...
M Hari's user avatar
  • 1
0 votes
1 answer
11 views

Piping tar archive to host fails on docker run but works on docker exec

I'm trying to get some libraries out of a Docker image, since I temporarily need it in another environment. Since I need symlinks to persist through this, I'm trying to tar the directory and pipe it ...
Max N.'s user avatar
  • 1,113
0 votes
1 answer
19 views

Invalid credentials for docker postgress image

I am creating two databases: product, and test one: version: '3.8' services: db: image: postgres:13-alpine environment: POSTGRES_USER: myuser POSTGRES_PASSWORD: mypassword ...
Johnyb's user avatar
  • 1,278
0 votes
0 answers
18 views

Best way to set folder permissions in docker container after every restart?

My cluster gets torn down at the end of every day. It looks like the base mounted folder for my apllication (/ni) has its permissions updated for an owner of local.adm. Instead, I need this to be my-...
Phant's user avatar
  • 83
0 votes
0 answers
19 views

Azure Pipeline timeout with testcontainers

I have a similar issue as this: Testcontainers: Azure pipeline test stage reach timeout of 1hour I would have commented there but I can't comment because I don't have 50 reputation. It's the same case,...
davor300's user avatar
0 votes
0 answers
19 views

I can't open server in 0.0.0.0 instead it is working in 127.0.0.1 in while using Docker , Django and Postgres [duplicate]

I am a newbie to this. settings.py file is: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': 'postgres', 'USER': 'postgres', 'PASSWORD':...
menpj's user avatar
  • 9
1 vote
1 answer
23 views

mvn verify doesnt start docker-compose

I want to start docker-compose upon integration tests e.g mvn verify command. I am using: <dependency> <groupId>org.springframework.boot</groupId> <artifactId&...
Darlyn's user avatar
  • 4,872

15 30 50 per page
1
2 3 4 5
9257