const puppeteer = require('puppeteer');
const url = 'https://foo/bar';
(async () => {
const browser = await puppeteer.launch({
headless: false
The improvement kata is a routine for moving from the current situation to a new situation in a creative, directed, meaningful way. It is based on a four-part model:
1. In consideration of a vision or direction...
2. Grasp the current condition.
3. Define the next target condition.
4. Move toward that target condition iteratively, which uncovers obstacles that need to be worked on.
- If target container is not in the default network the argument
--network <my-docker-network-name>has to be used withdockercommand.
Backup
docker run --rm --init --user 0 -v ${PWD}:/backups --link <mongodb-container-id>:src-mongodb mongo:4-xenial /bin/bash -c 'mongodump -h src-mongodb:27017 --db movie-favs --gzip --archive=/backups/$(date +"%d-%m-%Y")-mongodb.archive.gz'