Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
version: '3' | |
services: | |
minecraft1: | |
container_name: minecraft-creative | |
image: itzg/minecraft-bedrock-server | |
restart: always | |
ports: | |
- 19132:19132/udp | |
volumes: | |
- /share/CACHEDEV1_DATA/Docker/minecraft-creative:/data |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |