simple is better
base on alpine
base on nginx v1.8
#dockerfile
FROM alpine:latest
MAINTAINER alex [email protected]
RUN apk --update add nginx
RUN ln -sf /dev/stdout /var/log/nginx/access.log
RUN ln -sf /dev/stderr /var/log/nginx/error.log
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]
Content type
Image
Digest
sha256:ac3e7f648…
Size
3.6 MB
Last updated
about 11 years ago
docker pull alexwhen/nginx