A collection of Docker containers to be used with the corresponding online books for learning data science, computer science and coding!
You need to install docker-compose. To install docker compose on *nix systems or other systems.
sudo curl -L "https://github.com/docker/compose/releases/download/1.24.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --versionTo run the containers in the foreground. Hit CTRL-C to quit.
docker-compose upTo access the Jupyter Lab environments.
To run the containers in the background.
docker-compose up -d
docker-compose ps
docker-compose downSome useful commands.
# get realtime events from docker containers
docker-compose events
# observe status e.g. health
docker psTo fix EOL issues, use the following command.
sed -i -e 's/\r$//' *.sh