├── 4 ├── apache │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ └── queue.sh ├── fpm-alpine │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ └── queue.sh └── fpm │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ └── queue.sh ├── 5 ├── apache │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ ├── env.production │ └── queue.sh ├── fpm-alpine │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ ├── env.production │ └── queue.sh └── fpm │ ├── Dockerfile │ ├── cron.sh │ ├── entrypoint.sh │ ├── env.production │ └── queue.sh ├── .examples ├── full │ ├── .env │ ├── app │ │ └── Dockerfile │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf ├── full_v5 │ ├── .env │ ├── app │ │ └── Dockerfile │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf ├── maxsize │ ├── .env │ ├── app │ │ └── Dockerfile │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf ├── nginx-proxy-self-signed-ssl │ ├── .env │ ├── app │ │ └── Dockerfile │ ├── docker-compose.yml │ ├── proxy │ │ ├── Dockerfile │ │ └── vhost.conf │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf ├── nginx-proxy │ ├── .env │ ├── app │ │ └── Dockerfile │ ├── docker-compose.yml │ ├── proxy │ │ ├── Dockerfile │ │ └── vhost.conf │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf ├── raspberrypi │ ├── .env │ └── docker-compose.yml ├── readme.md ├── simple │ ├── apache │ │ └── docker-compose.yml │ └── fpm │ │ ├── docker-compose.yml │ │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf └── supervisor │ ├── apache │ ├── .env │ ├── app │ │ ├── Dockerfile │ │ └── supervisord.conf │ └── docker-compose.yml │ ├── fpm-alpine │ ├── .env │ ├── app │ │ ├── Dockerfile │ │ └── supervisord.conf │ ├── docker-compose.yml │ └── web │ │ ├── Dockerfile │ │ └── nginx.conf │ └── fpm │ ├── .env │ ├── app │ ├── Dockerfile │ └── supervisord.conf │ ├── docker-compose.yml │ └── web │ ├── Dockerfile │ └── nginx.conf ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .templates ├── Dockerfile-alpine.template ├── Dockerfile-apache.template ├── Dockerfile-debian.template ├── Dockerfile-extra.template ├── Dockerfile-foot4.template ├── Dockerfile-foot5.template ├── Dockerfile-head.template ├── Dockerfile-install.template ├── Dockerfile-label.template └── scripts │ ├── 4 │ ├── cron.sh │ ├── entrypoint.sh │ └── queue.sh │ └── 5 │ ├── cron.sh │ ├── entrypoint.sh │ ├── env.production │ └── queue.sh ├── LICENSE ├── generate-stackbrew-library.sh └── update.sh /.examples/full/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full/.env -------------------------------------------------------------------------------- /.examples/full/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full/app/Dockerfile -------------------------------------------------------------------------------- /.examples/full/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full/docker-compose.yml -------------------------------------------------------------------------------- /.examples/full/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full/web/Dockerfile -------------------------------------------------------------------------------- /.examples/full/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full/web/nginx.conf -------------------------------------------------------------------------------- /.examples/full_v5/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full_v5/.env -------------------------------------------------------------------------------- /.examples/full_v5/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full_v5/app/Dockerfile -------------------------------------------------------------------------------- /.examples/full_v5/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full_v5/docker-compose.yml -------------------------------------------------------------------------------- /.examples/full_v5/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full_v5/web/Dockerfile -------------------------------------------------------------------------------- /.examples/full_v5/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/full_v5/web/nginx.conf -------------------------------------------------------------------------------- /.examples/maxsize/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/maxsize/.env -------------------------------------------------------------------------------- /.examples/maxsize/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/maxsize/app/Dockerfile -------------------------------------------------------------------------------- /.examples/maxsize/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/maxsize/docker-compose.yml -------------------------------------------------------------------------------- /.examples/maxsize/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/maxsize/web/Dockerfile -------------------------------------------------------------------------------- /.examples/maxsize/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/maxsize/web/nginx.conf -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/.env -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/app/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/docker-compose.yml -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/proxy/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/proxy/vhost.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 10G; 2 | server_tokens off; -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/web/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy-self-signed-ssl/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy-self-signed-ssl/web/nginx.conf -------------------------------------------------------------------------------- /.examples/nginx-proxy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/.env -------------------------------------------------------------------------------- /.examples/nginx-proxy/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/app/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/docker-compose.yml -------------------------------------------------------------------------------- /.examples/nginx-proxy/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/proxy/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy/proxy/vhost.conf: -------------------------------------------------------------------------------- 1 | client_max_body_size 10G; 2 | server_tokens off; -------------------------------------------------------------------------------- /.examples/nginx-proxy/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/web/Dockerfile -------------------------------------------------------------------------------- /.examples/nginx-proxy/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/nginx-proxy/web/nginx.conf -------------------------------------------------------------------------------- /.examples/raspberrypi/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/raspberrypi/.env -------------------------------------------------------------------------------- /.examples/raspberrypi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/raspberrypi/docker-compose.yml -------------------------------------------------------------------------------- /.examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/readme.md -------------------------------------------------------------------------------- /.examples/simple/apache/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/simple/apache/docker-compose.yml -------------------------------------------------------------------------------- /.examples/simple/fpm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/simple/fpm/docker-compose.yml -------------------------------------------------------------------------------- /.examples/simple/fpm/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/simple/fpm/web/Dockerfile -------------------------------------------------------------------------------- /.examples/simple/fpm/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/simple/fpm/web/nginx.conf -------------------------------------------------------------------------------- /.examples/supervisor/apache/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/apache/.env -------------------------------------------------------------------------------- /.examples/supervisor/apache/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/apache/app/Dockerfile -------------------------------------------------------------------------------- /.examples/supervisor/apache/app/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/apache/app/supervisord.conf -------------------------------------------------------------------------------- /.examples/supervisor/apache/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/apache/docker-compose.yml -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/.env -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/app/Dockerfile -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/app/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/app/supervisord.conf -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/docker-compose.yml -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/web/Dockerfile -------------------------------------------------------------------------------- /.examples/supervisor/fpm-alpine/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm-alpine/web/nginx.conf -------------------------------------------------------------------------------- /.examples/supervisor/fpm/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/.env -------------------------------------------------------------------------------- /.examples/supervisor/fpm/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/app/Dockerfile -------------------------------------------------------------------------------- /.examples/supervisor/fpm/app/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/app/supervisord.conf -------------------------------------------------------------------------------- /.examples/supervisor/fpm/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/docker-compose.yml -------------------------------------------------------------------------------- /.examples/supervisor/fpm/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/web/Dockerfile -------------------------------------------------------------------------------- /.examples/supervisor/fpm/web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.examples/supervisor/fpm/web/nginx.conf -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | README.md export-ignore 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bashbrew 2 | -------------------------------------------------------------------------------- /.templates/Dockerfile-alpine.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-alpine.template -------------------------------------------------------------------------------- /.templates/Dockerfile-apache.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-apache.template -------------------------------------------------------------------------------- /.templates/Dockerfile-debian.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-debian.template -------------------------------------------------------------------------------- /.templates/Dockerfile-extra.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-extra.template -------------------------------------------------------------------------------- /.templates/Dockerfile-foot4.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-foot4.template -------------------------------------------------------------------------------- /.templates/Dockerfile-foot5.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-foot5.template -------------------------------------------------------------------------------- /.templates/Dockerfile-head.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-head.template -------------------------------------------------------------------------------- /.templates/Dockerfile-install.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-install.template -------------------------------------------------------------------------------- /.templates/Dockerfile-label.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/Dockerfile-label.template -------------------------------------------------------------------------------- /.templates/scripts/4/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /.templates/scripts/4/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/scripts/4/entrypoint.sh -------------------------------------------------------------------------------- /.templates/scripts/4/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/scripts/4/queue.sh -------------------------------------------------------------------------------- /.templates/scripts/5/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /.templates/scripts/5/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/scripts/5/entrypoint.sh -------------------------------------------------------------------------------- /.templates/scripts/5/env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/scripts/5/env.production -------------------------------------------------------------------------------- /.templates/scripts/5/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/.templates/scripts/5/queue.sh -------------------------------------------------------------------------------- /4/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/apache/Dockerfile -------------------------------------------------------------------------------- /4/apache/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /4/apache/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/apache/entrypoint.sh -------------------------------------------------------------------------------- /4/apache/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/apache/queue.sh -------------------------------------------------------------------------------- /4/fpm-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm-alpine/Dockerfile -------------------------------------------------------------------------------- /4/fpm-alpine/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /4/fpm-alpine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm-alpine/entrypoint.sh -------------------------------------------------------------------------------- /4/fpm-alpine/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm-alpine/queue.sh -------------------------------------------------------------------------------- /4/fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm/Dockerfile -------------------------------------------------------------------------------- /4/fpm/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /4/fpm/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm/entrypoint.sh -------------------------------------------------------------------------------- /4/fpm/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/4/fpm/queue.sh -------------------------------------------------------------------------------- /5/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/apache/Dockerfile -------------------------------------------------------------------------------- /5/apache/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /5/apache/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/apache/entrypoint.sh -------------------------------------------------------------------------------- /5/apache/env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/apache/env.production -------------------------------------------------------------------------------- /5/apache/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/apache/queue.sh -------------------------------------------------------------------------------- /5/fpm-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm-alpine/Dockerfile -------------------------------------------------------------------------------- /5/fpm-alpine/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /5/fpm-alpine/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm-alpine/entrypoint.sh -------------------------------------------------------------------------------- /5/fpm-alpine/env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm-alpine/env.production -------------------------------------------------------------------------------- /5/fpm-alpine/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm-alpine/queue.sh -------------------------------------------------------------------------------- /5/fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm/Dockerfile -------------------------------------------------------------------------------- /5/fpm/cron.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eu 3 | 4 | exec busybox crond -f -l 0 -L /proc/1/fd/1 5 | -------------------------------------------------------------------------------- /5/fpm/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm/entrypoint.sh -------------------------------------------------------------------------------- /5/fpm/env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm/env.production -------------------------------------------------------------------------------- /5/fpm/queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/5/fpm/queue.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/LICENSE -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monicahq/docker/HEAD/update.sh --------------------------------------------------------------------------------