1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-07-19 22:28:36 +02:00
docker-mailserver/docs/content/examples/tutorials/docker-build.md

23 lines
697 B
Markdown
Raw Normal View History

---
title: 'Tutorials | Docker Build'
---
## Building your own Docker image
You'll need to retrieve the git submodules prior to building your own Docker image. From within your copy of the git repo run the following to retrieve the submodules and build the Docker image:
```sh
git submodule update --init --recursive
docker build .
```
Or, you can clone and retrieve the submodules in one command:
```sh
git clone --recurse-submodules https://github.com/docker-mailserver/docker-mailserver
```
Retrieving the git submodules will fix the error:
```
COPY failed: file not found in build context or excluded by .dockerignore: stat target/docker-configomat/configomat.sh: file does not exist
```