/docker-workshop

Notes and Project from the Docker Workshop I have given at DjangoCon Budapest 2016

Primary LanguagePython

What's all this fuss about Docker?

other topics

  • start interactive container again (docker start -ai <id>)
  • pycharm: remote interpreter
  • ipdb.set_trace (in library?)
  • https://hub.docker.com/_/django/
  • running docker commands
  • what to keep in mind when inside a container
  • mounting
  • onbuild
  • production

Just for fun: redis commander

lbrediscommander:
  image: tenstartups/redis-commander
  command: --redis-host redis
  links:
    - redis
  expose:
    - "8081"
  ports:
    - "8081:8081"