Markus Blaschke
Markus Blaschke
``` Client: Docker Engine - Community Version: 20.10.2 API version: 1.41 Go version: go1.13.15 Git commit: 2291f61 Built: Mon Dec 28 16:17:43 2020 OS/Arch: linux/amd64 Context: default Experimental: true Server:...
happens also with Docker 20.10.3 on Ubuntu 20.04 can confirm: if registry mirror is not responding (timeout/connection refused) build is falling back and continues (with and without buildkit). if registry...
any progress on this issue?
Refactored and implemented this solution on a forked version: https://github.com/webdevops/alertmanager2es Instead of using busybox this fork is using a distroless container to add more security. Build is done with a...
You need to upload (`ADD` or `COPY` in `Dockerfile`) your own certificate into: - /opt/docker/etc/httpd/ssl/server.crt - /opt/docker/etc/httpd/ssl/server.csr - /opt/docker/etc/httpd/ssl/server.key see https://dockerfile.readthedocs.io/en/latest/content/DockerImages/dockerfiles/apache.html#apache-layout Or use a reverse proxy with let's encrypt support...
Added an example for sphinx for building documentation inside Makefile: https://github.com/webdevops/Dockerfile/blob/develop/Makefile#L72
Just upload your own configuration file to `/opt/docker/etc/nginx/vhost.common.d/10-php.conf` (source eg. https://github.com/webdevops/Dockerfile/blob/develop/docker/php-nginx/debian-7/conf/etc/nginx/vhost.common.d/10-php.conf) ENV vars are not enough?
@hhoechtl you can also use (with go-replace 1.1.x): ``` go-replace --mode=lineinfile --lineinfile-before='}' --regex \ -s 'fastcgi_param TESTVAR' -r 'fastcgi_param TESTVAR testvar;' -- /opt/docker/etc/nginx/vhost.common.d/10-php.conf ``` Which will replaces the line `fastcgi_param...
go-replace 1.1.x is available with newest images :)
Per default the container is using UID 1000/GID 1000 for accessing files inside the container or host mounted volumes.