If you encounter this error when trying to use ES6 modules with jest:
SyntaxError: Cannot use import statement outside a module
Run the tests with:
NODE_OPTIONS=--experimental-vm-modules npx jest
# 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 | |