An open API service indexing awesome lists of open source software.

https://github.com/zephinzer/writing-effective-docker-images-example-project

Example project for the article "What's Docker and how to write better Dockerfiles with more Happiness"
https://github.com/zephinzer/writing-effective-docker-images-example-project

Last synced: 2 months ago
JSON representation

Example project for the article "What's Docker and how to write better Dockerfiles with more Happiness"

Awesome Lists containing this project

README

        

# Writing Docker Files Example Project

This repository contains the example code used in the article "Writing effective Docker Images more efficiently" which can be found at: https://blog.gds-gov.tech/writing-effective-docker-images-more-efficiently-bf0129c3293b.

# Slides

This example repository comes with a set of slides for use in presentations. See the `.slides` directory for more info.

`reveal-md` is used to display the slides:

## Global Installation
```
npm install -g reveal-md
```

## Local Installation
```
yarn install
```

## Running the Presentation

An `npm` script has been setup, use the following to start the slides:

```
npm run slideshow
```

Or call it yourself using `reveal-md`:

```
reveal-md --css ./.slides/style.css -w ./.slides/slides.md
```

## Licensing

Slides are licensed under the Creative Commons Attribution-NonCommercial 3.0 Singapore License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc/3.0/sg/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

Feel free to share it around and use it for your own presentations! For attribution matters, copy and paste the following into your own works under a visible attribution space if you're using/remixing it:

> Adapted from @zephinzer's slides on Writing Effective Docker Images More Efficiently and the original content can be found at the GitHub repository located at: https://github.com/zephinzer/writing-effective-docker-images-example-project.