This page describes how to use rclone to backup to Google Drive using a service account. Access to the Google Drive target folders to/from which data is copied is controlled from Google Drive web UI, similar to when setting up access to normal Google or G Suite user accounts.
To check the logging configuration used by docker, we can use docker system info or docker info [1]:
# docker system info --format '{{.LoggingDriver}}' json-file The installation default is the json-file logging driver[4], this means Docker captures stdout (and stderr) of the containers, and writes them in JSON files (can be found in /var/lib/docker/<container-id>/<container-id>-json.
docker docker run Creates a new container from an image and run it
docker start Launch a container previously stopped
docker exec Executes a command in a running container
This is usually helpful to get a shell on a running container for checking
The Jupyter Docker Stacks repository contains dockerfiles definitions, and the respective images are in Docker Hub.
Docs here.
Example:
docker run --rm -p 18888:8888 \ -e JUPYTER_ENABLE_LAB=yes \ -v "/Users/guaguito/jupyter-work":/home/jovyan/work \ jupyter/tensorflow-notebook:7a0c7325e470 --rm: delete the container after it is used(stopped)
-p 18888:8888:map the port of container to port 18888 of the local computer