mirror of
https://github.com/certat/intelmq-docker.git
synced 2025-12-06 09:12:49 +01:00
Now we're using the api instead of the manager. This is future proof & will be updated constantly. Removed manager config & added api config Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> [NGINX] Added default webserver (nginx) Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated intelmq-full docker image Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Changed build process Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated utils Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Fixed entrypoint Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Updated docker-compose Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at> Misc Signed-off-by: Sebastian Waldbauer <waldbauer@cert.at>
25 lines
968 B
Docker
25 lines
968 B
Docker
FROM nginx:1.13-alpine
|
|
ENV LANG C.UTF-8
|
|
|
|
ARG BUILD_DATE
|
|
ARG VCS_REF
|
|
ARG BUILD_VERSION
|
|
|
|
LABEL maintainer="IntelMQ-Team <intelmq-team@cert.at>" \
|
|
org.opencontainers.image.authors="IntelMQ-Team <intelmq-team@cert.at>" \
|
|
org.opencontainers.image.title="intelmq-nginx" \
|
|
org.opencontainers.image.description="Modified NGINX Server for intelmq" \
|
|
org.opencontainers.image.url="https://github.com/certtools/intelmq/issues" \
|
|
org.opencontainers.image.source="https://github.com/certtools/intelmq.git" \
|
|
org.opencontainers.image.documentation="https://intelmq.readthedocs.io/en/latest/" \
|
|
org.opencontainers.image.vendor="intelmq-team"
|
|
|
|
LABEL org.opencontainers.image.created=$BUILD_DATE \
|
|
org.opencontainers.image.revision=$VCS_REF \
|
|
org.opencontainers.image.version=$BUILD_VERSION
|
|
|
|
WORKDIR /www
|
|
|
|
COPY .docker/nginx/config/app.conf /etc/nginx/conf.d/default.conf
|
|
COPY .docker/nginx/config/nginx.conf /etc/nginx/nginx.conf
|