python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to fix docker error "readonly file system: unknown"?
I was treing to set the project on my local machine as readonly for the docker container, like this:
docker run -d \
-p 3000:3000 \
-v $PWD:/app:ro \
-v /app/node_modules \
--name $1 \...
code_dude
Votes: 0
Answers: 2
How to enable AWS EBS Volume across multiple availability zones?
How can I access a AWS EBS Volume from multiple availability zones?
My case in detail:
I have a VPC across multiple availability zones:
data "aws_availability_zones" "available" {}...
florianmaxim
Votes: 0
Answers: 1
Kubernetes - Nginx cached content is getting deleted when stored in AWS EFS volume
I am using the official Nginx image with modified config to cache origin responses. The configuration below is includeed in the http block inside the /etc/nginx/nginx.conf (The main config file for Ng...
Feras Maali
Votes: 0
Answers: 0
how can i save spring boot log in k8s persistent volume
I run spring boot in the local environment, the log file is created well.
But when I run it on k8s, it works normally, but I can't find the log.
I tried to go into the pod and search for it, but I cou...
강정화
Votes: 0
Answers: 1