redis-docker VS httpd

Compare redis-docker vs httpd and see what are their differences.

redis-docker

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

httpd

Docker Official Image packaging for Apache HTTP Server (by docker-library)
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
redis-docker httpd
4 2
1,100 299
0.8% 1.3%
6.6 5.0
27 days ago 27 days ago
Shell Dockerfile
BSD 3-clause "New" or "Revised" License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

redis-docker

Posts with mentions or reviews of redis-docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-31.
  • CI/CD using GitHub Actions for Rails and Docker
    3 projects | dev.to | 31 Aug 2022
    version: "3.7" services: postgres: image: "postgres:14-alpine" environment: POSTGRES_USER: "example" POSTGRES_PASSWORD: "example" ports: - "5432:5432" volumes: - "postgres:/var/lib/postgresql/data" redis: image: "redis:5-alpine" command: ["redis-server", "--requirepass", "yourpassword", "--appendonly", "yes"] healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 10s timeout: 5s retries: 5 ports: - "6379:6379" volumes: - redis:/data sysctls: # https://github.com/docker-library/redis/issues/35 net.core.somaxconn: "511" sidekiq: depends_on: - "postgres" - "redis" - "elasticsearch" build: context: . args: environment: development image: you/yourapp command: bundle exec sidekiq -C config/sidekiq.yml.erb volumes: - ".:/app" # don"t mount tmp directory - /app/tmp env_file: - ".env" web: build: context: . args: environment: development image: you/yourapp command: bundle exec rspec depends_on: elasticsearch: condition: service_healthy postgres: condition: service_started redis: condition: service_healthy tty: true stdin_open: true ports: - "3000:3000" env_file: - ".env" elasticsearch: container_name: elasticsearch image: docker.elastic.co/elasticsearch/elasticsearch:7.4.2 environment: - discovery.type=single-node - cluster.name=docker-cluster - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms1024m -Xmx1024m" - "logger.org.elasticsearch=error" healthcheck: test: curl --fail elasticsearch:9200/_cat/health >/dev/null || exit 1 interval: 30s timeout: 10s retries: 5 ulimits: memlock: soft: -1 hard: -1 volumes: - esdata:/usr/share/elasticsearch/data ports: - 9200:9200 volumes: redis: postgres: esdata:
  • An unexpected Redis sandbox escape affecting only Debian, Ubuntu, and other derivatives
    1 project | /r/linux | 9 Mar 2022
  • Hacker deleted all of NewsBlur’s mongo data and is now holding the data hostage
    7 projects | news.ycombinator.com | 23 Jun 2021
    I was caught out by this too[0]. I now have a fw script which runs automatically for demos etc.

    [0] https://github.com/docker-library/redis/issues/259#issuecomm...

  • Hack: Forcing Puppet to apt update
    4 projects | dev.to | 9 Apr 2021
    Short hack: As seen in m a n y Dockerfiles, the apt cache is located at /var/lib/apt/lists.

httpd

Posts with mentions or reviews of httpd. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-09.
  • Hack: Forcing Puppet to apt update
    4 projects | dev.to | 9 Apr 2021
    Short hack: As seen in m a n y Dockerfiles, the apt cache is located at /var/lib/apt/lists.
  • OpenSSL Security Advisory [25 March 2021]
    4 projects | news.ycombinator.com | 25 Mar 2021
    You can try configuring SSLOptions -OptRenegotiate and then point ssllabs at it to see if reneg is disabled.

    If that doesn't work, recompile apache against an older version of openssl. Maybe the easiest way to do that is take the Dockerfile (https://github.com/docker-library/httpd/blob/master/2.4/Dock...), take out libssl-dev, compile a specific openssl version, then link against it.

What are some alternatives?

When comparing redis-docker and httpd you can also consider the following projects:

masscan - TCP port scanner, spews SYN packets asynchronously, scanning entire Internet in under 5 minutes.

docker-nginx - Official NGINX Dockerfiles

AttackSurfaceAnalyzer - Attack Surface Analyzer can help you analyze your operating system's security configuration for changes during software installation.

cve-2021-3449 - CVE-2021-3449 OpenSSL denial-of-service exploit 👨🏻‍💻

OpenSSL - TLS/SSL and crypto library

docker-ce - :warning: This repository is deprecated and will be archived (Docker CE itself is NOT deprecated) see the https://github.com/docker/docker-ce/blob/master/README.md :warning:

postgres - Docker Official Image packaging for Postgres

Redis - Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.

Moby - The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems