I am trying to learn volume in docker-compose.yml
, and I came across this code from this example:
https://docs.docker.com/compose/wordpress/
version: "3.9"
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
volumes:
# Make db_data persistant
db_data: {}
For the global volume db_data
, can I understand it as mySQL data(from /var/lib/mysql) will be saved in an object called db_data
? If this understanding is wrong, what is the correct meaning for this code?