Estou usando o contêiner docker nginx oficial mais recente .
Sempre que inicio o container, são criados dois arquivos no/usr/share/nginx/html
root@ba65db04a18f:/# ls -la /usr/share/nginx/html
total 16
drwxr-xr-x 2 root root 4096 Jun 28 15:38 .
drwxr-xr-x 3 root root 4096 Jun 23 00:55 ..
-rw-r--r-- 1 root root 537 May 30 13:03 50x.html
-rw-r--r-- 1 root root 612 May 30 13:03 index.html
Como evitar que esses arquivos sejam criados?
Os comandos que estou usando para iniciar o container são:
docker volume create static
docker run -it --rm --name nginx -v static:/usr/share/nginx/html:ro nginx
O arquivo de configuração padrão ( /etc/nginx/nginx.conf
) é:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
E há um arquivo /etc/nginx/conf.d
chamado default.conf que tem o conteúdo:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
Eu tentei substituir este default.conf
arquivo por um arquivo em branco iniciando o contêiner com o comando:
docker volume rm static
docker volume create static
docker run -it --rm --name nginx -v static:/usr/share/nginx/html:ro -v /path/on/host/to/blank/default.conf:/etc/nginx/conf.d/default.conf nginx
Mas o nginx ainda cria index.html
e 50x.html
. Como faço para parar?
A imagem docker do nginx é responsável pelos arquivos
index.html
e :50x.html
https://github.com/nginxinc/docker-nginx/blob/48a4c531fc4bfa80d4270f20a67e2e958856860c/stable/alpine/Dockerfile#L101-L102
Para evitar que eles sejam criados, seria necessário estender a imagem oficial do docker nginx e remover os arquivos.
Alternativamente, também deve ser possível alterar o
CMD
usado para iniciar o contêiner para que ele remova os arquivos antes de iniciar o processo nginx.