├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md ├── module01 └── README.md ├── module02 ├── Dockerfile ├── README.md └── app │ └── index.js ├── module03 ├── README.md ├── app-configurable │ ├── .dockerignore │ ├── Dockerfile │ ├── conf.json │ ├── index.html │ └── index.js └── app │ ├── .dockerignore │ ├── Dockerfile │ └── index.html ├── module04 ├── README.md ├── module04.1 │ └── README.md ├── module04.2 │ ├── README.md │ └── esempi │ │ ├── Dockerfile │ │ ├── Dockerfile-cmd │ │ └── Dockerfile-entrypoint └── module04.3 │ └── README.md ├── module05 ├── README.md └── event-state-semplified.png ├── module06 ├── README.md └── docker-compose.yml ├── module07 ├── README.md └── docker-compose.yml └── vm ├── Vagrantfile └── provision-bootstrap.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | .vagrant 4 | vm/*.log 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/README.md -------------------------------------------------------------------------------- /module01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module01/README.md -------------------------------------------------------------------------------- /module02/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module02/Dockerfile -------------------------------------------------------------------------------- /module02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module02/README.md -------------------------------------------------------------------------------- /module02/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module02/app/index.js -------------------------------------------------------------------------------- /module03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/README.md -------------------------------------------------------------------------------- /module03/app-configurable/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | conf.json 3 | -------------------------------------------------------------------------------- /module03/app-configurable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/app-configurable/Dockerfile -------------------------------------------------------------------------------- /module03/app-configurable/conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "text": "Ciao ragazzi" 3 | } 4 | -------------------------------------------------------------------------------- /module03/app-configurable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/app-configurable/index.html -------------------------------------------------------------------------------- /module03/app-configurable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/app-configurable/index.js -------------------------------------------------------------------------------- /module03/app/.dockerignore: -------------------------------------------------------------------------------- 1 | ../Dockerfile 2 | -------------------------------------------------------------------------------- /module03/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/app/Dockerfile -------------------------------------------------------------------------------- /module03/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module03/app/index.html -------------------------------------------------------------------------------- /module04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module04/README.md -------------------------------------------------------------------------------- /module04/module04.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module04/module04.1/README.md -------------------------------------------------------------------------------- /module04/module04.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module04/module04.2/README.md -------------------------------------------------------------------------------- /module04/module04.2/esempi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module04/module04.2/esempi/Dockerfile -------------------------------------------------------------------------------- /module04/module04.2/esempi/Dockerfile-cmd: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | CMD ["ping", "localhost"] 3 | -------------------------------------------------------------------------------- /module04/module04.2/esempi/Dockerfile-entrypoint: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | ENTRYPOINT ["ping", "localhost"] 3 | -------------------------------------------------------------------------------- /module04/module04.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module04/module04.3/README.md -------------------------------------------------------------------------------- /module05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module05/README.md -------------------------------------------------------------------------------- /module05/event-state-semplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module05/event-state-semplified.png -------------------------------------------------------------------------------- /module06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module06/README.md -------------------------------------------------------------------------------- /module06/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module06/docker-compose.yml -------------------------------------------------------------------------------- /module07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module07/README.md -------------------------------------------------------------------------------- /module07/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/module07/docker-compose.yml -------------------------------------------------------------------------------- /vm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/vm/Vagrantfile -------------------------------------------------------------------------------- /vm/provision-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bombo82/workshop-docker/HEAD/vm/provision-bootstrap.sh --------------------------------------------------------------------------------