In this chapter, we will start to operate redis in the spring Boot project under docker Preparation: (1) Create a folder: usr/local/work/share (2) Pull the project, which is a packaged jar package (3) Put the extracted jar package into the folder just created, and create a file named docker-compose.yml (4) Create a data folder in the tmp directory (5) And write the following content in the docker-compose.yml file: redis: image: redis:3 ports: - "6379:6379" volumes: - /tmp/data:/data - java: image: bolingcavalry/springbootrun:0.0.1 links: - redis:redishost volumes: - /usr/local/work/share:/usr/Downloads ports: - "8080:8080" tty: true Here we only explain volumes. To put it simply, the data stored in the redis container in docker is persisted to the local directory. Official statement: The Redis port 6379 has been pre-configured by Redis and is exposed from the container to the host. In the docker-compose.yml file, it is exposed from the host to the outside world, so that any node can go to the Redis Desktop Manager and manage this Redis instance. On top of that, there are several things in the Redis spec that make data persist between deployments of this stack: Redis always runs on a manager, so it always uses the same filesystem; Redis accesses an arbitrary directory in the host’s filesystem as /data inside the container, and this is where Redis stores its data. In summary, this is about creating the "source of truth" in the host's physical file system for your Redis data. Without this, Redis will store its data in /data on the container filesystem, which will be cleared if the container is redeployed. This source of truth has two components: placement constraints on the Redis service, ensuring it always uses the same host; and volumes created to allow containers to access /data (on the host) as /data (inside the Redis container). Files stored in /data on a given host will persist as containers come and go, thus maintaining continuity. 2. Start the container After writing the above content to docker-compose.yml, execute the command docker-compose up -d in the directory where the file is located to start two containers. Then execute docker ps to see the container information as follows: After the jar package is downloaded, it is placed in the local /usr/local/work/share directory. This directory is mapped to the container's /usr/Downloads, so we can directly access this file after entering the container. 3. Deploy jar package Execute the following command to enter the running springboot container:
Enter the /usr/Downloads directory and you can see the files:
Run the following command to start the container:
The startup is successful, the information is as follows: Local testing implement
implement
Let's go to the redis container to check and execute the following command to enter the redis container:
Execute get name in the console to see the value corresponding to name, as shown below: The simple test has been successful. As mentioned above, all data will disappear as long as the redis container is closed, but we configured it in the docker-compose.yml above.
This means that the data just saved is persisted to the local tmp/data directory. Open tmp/data and you will find a file called dump.rdb Open it with a terminal and enter the command: vi dump.rdb and you will see the data you just saved name:hxy That's all about the persistence of redis under docker. If there is a better way, please give me more advice. Thank you for reading this. Related projects: https://github.com/haoxiaoyong1014/springboot-examples/tree/master/springboot-redis-docker Additional knowledge: Install Redis under Docker, start it, set the password, and enable persistence Pull the image
Start and set password, enable persistence
The above detailed explanation of persistent storage of redis under docker is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to make React components full screen
>>: Some references about colors in HTML
Concept of SFTP sftp is the abbreviation of Secur...
query_cache_limit query_cache_limit specifies the...
Preface I am a PHP programmer who started out as ...
1 / Copy the web project files directly to the we...
Create a new configuration file (for example, go ...
Refer to the official document http://dev.mysql.c...
How to install flash in Linux 1. Visit the flash ...
Controversy over nofollow There was a dispute bet...
HTML img tag: defines an image to be introduced in...
It is often necessary to run commands with sudo i...
This article uses examples to describe the add, d...
Rendering pipeline with external css files In the...
Practice is the only way to test the truth. This ...
MySQL multi-condition query with AND keyword. In ...
Chinese characters cannot be input in lower versio...