Sign inSign up

ivansanmartins/flash-cache-client

By ivansanmartins

•Updated over 2 years ago

flash-cache-client React

Image
0

207

ivansanmartins/flash-cache-client repository overview

⁠About

Flash-cache-client is a component designed to interact with Flash-cache-server, a simple API utilized for testing Redis cache. The purpose of Flash-cache-client is to streamline communication with Flash-cache-server from a frontend project, enabling easier testing and manipulation of data retrieved through HTTP GET requests.

⁠Docs

flash-cache documentation⁠

⁠How to use this Image

Start:


$ docker container run \
--name flash-cache-server \
-dp 8000:8000 \
ivansanmartins/flash-cache-client:teddy

⁠Docker Compose - flash-cache-client, flash-cache-server & Redis

Example:

docker-compose.yaml


version: '3'

version: '3'

services:
  redis:
    container_name: redis
    image: redis:bookworm
    ports:
      - "6379:6379"

  server:
    container_name: flash-cache-server
    depends_on:
      - redis
    image: ivansanmartins/flash-cache-server:teddy
    ports:
      - "3000:3000"
    environment:
      REDIS_HOST: redis
      REDIS_PORT: 6379
    restart: always
  
  client:
    container_name: flash-cache-client
    image: ivansanmartins/flash-cache-client:teddy
    ports:
      - "8000:8000"
    restart: always
    
  

⁠More

  • flash-cache-server and Redis⁠
  • Tag summary

    Content type

    Image

    Digest

    sha256:39c0154cb…

    Size

    104.5 MB

    Last updated

    over 2 years ago

    docker pull ivansanmartins/flash-cache-client