Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion webui/20-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod u+x /docker-entrypoint.sh
RUN tar cfvz /bareos-webui-config.tgz /etc/bareos-webui
RUN tar cfvz /bareos-webui-code.tgz /usr/share/bareos-webui
RUN mkdir -p /run/nginx
RUN mkdir -p /run/nginx \
&& sed -i -E \
-e "s#(access_log) [^[:space:]]+ #\1 /dev/stdout #" \
-e "s#(error_log) [^[:space:]]+ #\1 /dev/stderr #" \
/etc/nginx/nginx.conf

EXPOSE 9100

Expand Down
6 changes: 5 additions & 1 deletion webui/21-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod u+x /docker-entrypoint.sh
RUN tar cfvz /bareos-webui-config.tgz /etc/bareos-webui
RUN tar cfvz /bareos-webui-code.tgz /usr/share/bareos-webui
RUN mkdir -p /run/nginx
RUN mkdir -p /run/nginx \
&& sed -i -E \
-e "s#(access_log) [^[:space:]]+ #\1 /dev/stdout #" \
-e "s#(error_log) [^[:space:]]+ #\1 /dev/stderr #" \
/etc/nginx/nginx.conf

EXPOSE 9100

Expand Down
6 changes: 5 additions & 1 deletion webui/22-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod u+x /docker-entrypoint.sh
RUN tar cfvz /bareos-webui-config.tgz /etc/bareos-webui
RUN tar cfvz /bareos-webui-code.tgz /usr/share/bareos-webui
RUN mkdir -p /run/nginx
RUN mkdir -p /run/nginx \
&& sed -i -E \
-e "s#(access_log) [^[:space:]]+ #\1 /dev/stdout #" \
-e "s#(error_log) [^[:space:]]+ #\1 /dev/stderr #" \
/etc/nginx/nginx.conf

EXPOSE 9100

Expand Down
Loading