Use a single code block for Docker commands in the README

This makes it easier to copy all the lines at once for later editing.
This commit is contained in:
Hugo Locurcio
2020-10-05 19:23:52 +02:00
parent 3b6c65e03d
commit c7d9c51d22

View File

@@ -23,11 +23,13 @@ October instance.
### Restoring a database
- `mv /your/dump/backup-file.sql ./docker/mariadb/init`
- `./docker/mariadb/bash.sh`
- `cd /docker-entrypoint-initdb.d/`
- `mysql < 000-setup.sql`
- `mysql < backup-file.sql`
```sh
mv /your/dump/backup-file.sql docker/mariadb/init
docker/mariadb/bash.sh
cd /docker-entrypoint-initdb.d/
mysql < 000-setup.sql
mysql < backup-file.sql
```
### Interfacing with the Docker containers