[DevOps] How to create a Docker Compose file for Redis Service

0
33

Hello everyone, welcome back to Learn Tech Tips Blogspot. I am Zidane (大家好, 我是雞蛋🥚🥚)

Today I will show you how to create Redis Docker Compose file for you can easy deploy redis without setup any environment.

As you know when you working with Docker

 

How to create a Docker Compose file for Redis Service

 

First of all, If you wanna to learn what is Redis. The below link is for you.  

👇

https://learn-tech-tips.blogspot.com/2017/12/what-is-redis.html

Let’s Follow me on

👉 Tiktok

👉 Facebook:

After know what is Redis and we go to another define: That is Docker containers.

 

How to create a Docker Compose file for Redis Service

 

Docker container is a unit of software that packages up code and all its dependencies to allow the application to tun quickly and reliably from one computing environment to another. For laynching multiple docker containers, a YAML file is used by compose to initialize services for the app. Creating and lauching all of the functions is as simple as issuing a single command when configutation is complete

Ok. Let’s create a Docker compose file or Redis service. Just below some row you will get a redis service easily.

version: ‘1.0’ 
services:
  cache:
   image: redis:6.2-alpine 
   container_name: redis
   restart: always 
   ports:
     – ‘6379:6379’ 
   command: redis-server –save 20 1 –loglevel warning 
   volumes: 
     – cache:/data
volumes:
   cache:
     driver: local
start your docker file then type the command
docker-compose up –build -d
 
you will see this result 
 
How to create a Docker Compose file for Redis Service

On docker container you will see 

Set Get key on Redis Service

Enter terminal of redis: if below is work fine, that you had configed succeed.
 
redis-cli
SET KEY VALUE
GET KEY VALUE
Congratulation, You had created succeed Docker Compose for Redis Service
Thanks for reading. Any feedback and questions for Create a Docker compose file for Redis service. Leave your comment on below post, we can discuss about it.

✋✋✋✋ Learn Tech Tips – I am Zidane, See you next time