Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
256 views

I created images for my ASP.NET Core 8 MVC project, but when I try to access it locally, it is not working showing an error "This site can't be reached". FROM mcr.microsoft.com/dotnet/sdk:8....
Ayush's user avatar
  • 49
-1 votes
1 answer
198 views

I'm trying to build by project in Docker, So i'm using Docker Desktop to build my project, when i build the image i get this as one of my vulnerabilities CVE-2024-26308 CWE-770 7.5 H Allocation of ...
Akash Jain's user avatar
1 vote
0 answers
655 views

I am using docker desktop 4.29 enterprise version. I have noticed that there are few cached data that is getting increase after every run. This is getting cached in folder "C:\Users\...
Abhishek Maurya's user avatar
0 votes
0 answers
61 views

I was using llama_index.readers.web.WholeSiteReader inside a docker container, which first gave a ValueError saying No chrome executable found in PATH. After I installed and setup the google-chrome ...
Suryaansh Rai's user avatar
1 vote
0 answers
392 views

docker compose -f docker-compose.yml build time="2024-05-07T07:51:43+05:30" level=warning msg="F:\\AuctionEasePlatform\\docker-compose.yml: `version` is obsolete" request returned ...
Amanta Phelix's user avatar
2 votes
1 answer
238 views

I am new to multistage builds and using chown -R appuser:appuser /app # Copy the virtual environment COPY --from=builder --chown=appuser:appuser ${VIRTUAL_ENV} ${VIRTUAL_ENV} # Copy application code ...
aceminer's user avatar
  • 4,365
0 votes
2 answers
2k views

I have a RHEL 7 server with Docker EE and I have installed Docker CE after removing Docker EE. But after installing Docker CE, when I try to start Docker service with command systemctl enable --now ...
noonenine's user avatar
  • 129
0 votes
0 answers
39 views

i am new to devops specially docker, i have created a docker image to config Jenkins inside a docker container to make the data persistent i have used docker volume, i am using the following command: ...
Akshat Mani Tripathi's user avatar
0 votes
1 answer
339 views

I want to create a Dockerfile to build a webserver via NPM from a NuxtJS page. Building with the Dockerfile works without problems, but as soon as I start the container via docker compose, I get an ...
LbGame's user avatar
  • 1
1 vote
0 answers
570 views

I'm new to Gitlab and trying to setup some pipelines with executor docker+machine on RHEL/ Red Hat servers. Since RHEL uses Podman containers so I am trying to use the same and while running the ...
Tanish's user avatar
  • 112
0 votes
0 answers
108 views

I have site running on a docker container here is my compose file it is quite basic version: '3' services: apache: image: httpd:latest networks: vlan-ecm: ipv4_address: 172.16....
jack_dan's user avatar
1 vote
2 answers
715 views

The following is my docker file FROM node:16-alpine WORKDIR /app COPY a.txt /app I have volume name my-volume which have a folder called dist. Im trying to mount my-volume to /app in the container. I ...
Justine mathew Zacharias's user avatar
0 votes
0 answers
146 views

I have a Java application that is running in the container, and I have removed the core jar file from the container, but still the application in the container is UP and RUNNING, I don't understand ...
Anguraj Dinesh's user avatar
2 votes
1 answer
3k views

I spun up a wordpress and mysql container inside podman to test a plugin. I need to copy the wordpress /uploads/ folder inside the new instance. I thought that would be the easiest part, but I soon ...
Janez Kranjski's user avatar
0 votes
1 answer
592 views

I have used run command in docker cli to so when i used the command docker run --name ubuntu ubuntu it simply exists because it has no ptty and input output connection and we can attach our terminal ...
gilf0yle's user avatar
  • 1,102
1 vote
1 answer
2k views

my docker compose file is as follows: version: "3" services: app: build: context: . dockerfile: Dockerfile ports: - "5000:5000" deploy: ...
Los's user avatar
  • 581
2 votes
1 answer
677 views

Recently we have moved the rails application to docker for development. I am using MacBook Pro (M1, 2020), OS Version: 12.0.1. Now the application works, but that is extremely slow on local machine, ...
Developer's user avatar
  • 671
0 votes
0 answers
36 views

I have an application that is running as a container inside Linux based server that needs to be able to communicate with a DB server that is not containerized. Linux Server1 -> container -> app ...
QnA's user avatar
  • 1
2 votes
1 answer
964 views

I'm trying to create a container on Docker using Linux I'm trying to run docker run hello-world And I get an error docker: Error response from daemon: failed to create shim task: OCI runtime create ...
Ghost Ghaith's user avatar
0 votes
2 answers
790 views

I would like to build ABP project and docker image on Windows Server 10.0.17763.168. I have attached the issue. I have enabled Hyper-V feature on Physical machine. Thank you for taking the time to ...
Manny's user avatar
  • 45
2 votes
2 answers
2k views

I have a docker file like this which runs a hello-world FastAPI app. FROM python:3.10.9-alpine3.16 RUN adduser -D app USER app WORKDIR /usr/src/app COPY . . RUN pip install --no-cache-dir -r ...
dev's user avatar
  • 1,051
-2 votes
1 answer
414 views

Hi I am building a simple python image using docker. I am using ubuntu 22.04 and vs code as my editor. I have created a folder inside my local machine and used vs code to write simple python script ...
Rising Sun's user avatar
0 votes
0 answers
118 views

i need to bind a directory from host to container , i need to limit the amount of data that is generated from a program in the container , for example 5gb, if the program generated 5gb data and ...
4lireza's user avatar
0 votes
1 answer
101 views

I am using .gitlab-ci.yml file as below. I want to perform docker pull & push to google container registry image: name: google/cloud-sdk:latest entrypoint: [ "" ] variables: ...
John's user avatar
  • 73
0 votes
0 answers
1k views

How could I change the docker-volume-device option after the creation, With out removing the container Previous command used for creation docker volume create \ --driver local \ ...
JOEL's user avatar
  • 39

1
2 3 4 5
34