> For the complete documentation index, see [llms.txt](https://wilmerags.gitbook.io/digital-garden/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wilmerags.gitbook.io/digital-garden/code/devops/docker.md).

# Docker

## Guidelines

* Always add *.dockerignore* file.
* Try to use and exploit multi-stage builds.

## Recipes

**Installing Docker**

```bash
sudo apt-get update
curl -sSL https://get.docker.com/ | sh
sudo usermod -aG docker $USER
sudo service docker start
```

**Installing Docker-compose**

```bash
sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
docker-compose --version
```

**Dockerfile With python venv's**

```dockerfile
FROM python:3.8-slim-buster

ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

# Install dependencies:
COPY requirements.txt .
RUN pip install -r requirements.txt

# Run the application:
COPY myapp.py .
CMD ["python", "myapp.py"]
```

**Remove all exited containers:** `docker rm $(docker ps -a -f status=exited -q)`

**Building docker images**:

* <https://codefresh.io/docker-tutorial/build-docker-image-dockerfiles/>

**Remove all images** `docker rmi $(docker images -a -q)`

**Remove dangling images**

`docker image prune`

**Remove dangling volume**

`docker volume prune`

**Kill all system garbage**

`docker system prune`

**Run container**

```bash
docker run --network="host" -p 8080:8080 --name <name-of-the-container> wilmerags/image-name:tag
# network host to make it visible
```

\*\*Add parameters to docker image build \*\*

```bash
docker build --build-arg APP_ENV=DESIRED_ENV -f Dockerfile -t wilmerags/twitter-executor:IMAGE_TAG .
```

```dockerfile
# ...
COPY env/${APP_ENV}/.env /app/
# ...
```

**Tag image for pushing**

```bash
docker tag 434eb3701cc9 wilmerags/twitter-executor # 434.. is the image ID
```

**Building local image into docker-compose**:

* <https://stackoverflow.com/questions/46032392/docker-compose-does-not-allow-to-use-local-images>

**Resources**

* <https://pythonspeed.com/articles/multi-stage-docker-python/>
* <https://medium.com/capital-one-tech/multi-stage-builds-and-dockerfile-b5866d9e2f84>
* <https://pythonspeed.com/docker/>
* [The Rabbit Hole of Using Docker in Automated Tests](http://gregoryszorc.com/blog/2014/10/16/the-rabbit-hole-of-using-docker-in-automated-tests/)
* [Bridget Kromhout](https://twitter.com/bridgetkromhout) has a useful blog post on [running Docker in production](http://sysadvent.blogspot.co.uk/2014/12/day-1-docker-in-production-reality-not.html) at Dramafever.
* There's also a best practices [blog post](http://developers.lyst.com/devops/2014/12/08/docker/) from Lyst.
* [Building a Development Environment With Docker](https://tersesystems.com/2013/11/20/building-a-development-environment-with-docker/)
* [Discourse in a Docker Container](https://samsaffron.com/archive/2013/11/07/discourse-in-a-docker-container)
