Azure CD via Pipelines/Docker

This page summarizes the projects mentioned and recommended in the original post on /r/ProWordPress

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • docker-compose-wait

    A simple script to wait for other docker images to be started while using docker-compose (or Kubernetes or docker stack or whatever)

  • FROM wordpress:cli # Install make tool USER root RUN apk add --no-cache make # Make docker-compose wait for container dependencies be ready # Add the wait script to the image ENV WAIT_VERSION 2.7.2 ADD https://github.com/ufoscout/docker-compose-wait/releases/download/$WAIT_VERSION/wait /wait RUN chmod +x /wait # Add Makefile to scripts dir ADD Makefile entrypoint.sh /scripts/ RUN chmod +x /scripts/entrypoint.sh ENTRYPOINT [ "/scripts/entrypoint.sh" ] USER 33:33 CMD ["wp", "shell"]

  • wordpress

    Docker Official Image packaging for WordPress (by docker-library)

  • #!/bin/sh set -euo pipefail # Based on wordpress:cli entrypoint # https://github.com/docker-library/wordpress/blob/master/php7.2/cli/docker-entrypoint.sh # If the first arg is `--some-option` then execute wp-cli if [ "${1#-}" != "$1" ]; then set -- wp "$@" fi # if our command is a valid wp-cli subcommand (say plugin), let's invoke it through wp-cli instead # (this allows for "docker run wordpress:cli help", etc) # documenation of the subcommand is shown if wp --path=/dev/null help "$1" > /dev/null 2>&1; then set -- wp "$@" fi # Execute aliases in the make file or directly the provided command if [ "$1" == "install" ] || [ "$1" == "configure" ]; then make -f /scripts/Makefile $1 else exec "$@" fi

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Any easy way to wait for dependend on containers to actually be ready in docker-compose?

    2 projects | /r/docker | 22 Apr 2022
  • How to NOT expose a container until everything is built?

    1 project | /r/docker | 19 Aug 2021
  • How to make sure that the container only starts if Redis and PSQL are ready to accept connections?

    3 projects | /r/podman | 20 Mar 2021
  • Docker – October 2022 Pricing Change FAQ

    4 projects | news.ycombinator.com | 19 Oct 2022
  • I wrote a short article on how to optimize local Go - Kubernetes development with Skaffold and BuildKit

    2 projects | /r/golang | 27 Dec 2021