commit 3a5ad2b1554c61d848979be2447372d64f32ee68 Author: administrateur Date: Wed Jul 24 14:24:08 2024 +0200 Ajouter docker-compose.add.yml diff --git a/docker-compose.add.yml b/docker-compose.add.yml new file mode 100644 index 0000000..8bca172 --- /dev/null +++ b/docker-compose.add.yml @@ -0,0 +1,14 @@ + redis_mem: + image: redis:6-alpine + container_name: redis_mem + restart: always + volumes: + - redis_storage_mem:/data + command: redis-server --requirepass mypassword + healthcheck: + test: ['CMD', 'redis-cli', 'ping'] + interval: 5s + timeout: 5s + retries: 10 + networks: + - web \ No newline at end of file