pelagos 0.1.1

Fast Linux container runtime — OCI-compatible, namespaces, cgroups v2, seccomp, networking, image management
Documentation
1
2
3
4
5
6
7
8
FROM alpine:latest
RUN apk add --no-cache nginx && mkdir -p /var/www/html /run/nginx && \
    ln -sf /dev/stdout /var/log/nginx/access.log && \
    ln -sf /dev/stderr /var/log/nginx/error.log
COPY nginx.conf /etc/nginx/http.d/default.conf
COPY index.html /var/www/html/index.html
CMD ["nginx", "-g", "daemon off;"]
EXPOSE 80