This image is the nginx base. It comes from rawmind/alpine-monit.
8.3K
=============
This image is the nginx base. It comes from alpine-monit.
docker build -t rawmind/alpine-nginx:<version> .
1.14.0-0 (Dockerfile)1.12.2-2 (Dockerfile)1.12.1-6 (Dockerfile)1.11.9-1 (Dockerfile)1.10.2-1 (Dockerfile)1.10.1-9 (Dockerfile)1.9.15-3 (Dockerfile)This image runs nginx with monit.
Besides, you can customize the configuration in several ways:
Nginx is installed with the default configuration (env vars):
/opt/nginx
${SERVICE_HOME}/log
${SERVICE_LOG_DIR}/error.log
worker_processes 2;
error_log ${SERVICE_HOME}/log/error.log warn;
pid ${SERVICE_HOME}/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include ${SERVICE_HOME}/conf/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 ${SERVICE_HOME}/log/access.log main;
sendfile off;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
include ${SERVICE_HOME}/sites/*.conf;
}
server {
listen 8080 default_server;
root ${SERVICE_HOME}/www;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
location / {
try_files \$uri \$uri/ /index.html;
}
}
default
empty
${SERVICE_HOME}/certs/${NGINX_SERVER_NAME}.key
empty
${SERVICE_HOME}/certs/${NGINX_SERVER_NAME}.crt
Nginx is installed under /opt/nginx and use config files /opt/nginx/conf/nginx.conf and /opt/nginx/sites/*.conf.
You could overwrite nginx and/or server config and server name, setting env variables, ${NGINX_CONF}, ${NGINX_SERVER_CONF} and ${NGINX_SERVER_NAME}.
You could add ssl cert and key setting env variables, ${NGINX_CERT} and ${NGINX_KEY}. By default cert and key files are generated at '${NGINX_CERT_FILE}' and '${NGINX_KEY_FILE}', overwrite env variables if you want another location.
Default log is configured to show /opt/nginx/log/error.log. You could override it, setting env variable ${SERVICE_LOG_FILES}. Multiple values allowed with "," separator.
You could also include FROM rawmind/alpine-nginx at the top of your Dockerfile, and add your site files to /opt/nginx/www.
Content type
Image
Digest
Size
11.7 MB
Last updated
about 4 years ago
docker pull rawmind/alpine-nginx:1.23.0-0