Compare commits

...

4 Commits

Author SHA1 Message Date
Dominik Chilla
52b1e122bb
Merge pull request #16 from chillout2k/devel
Docs: OCI-images at dockerhub
2020-12-05 21:22:38 +01:00
88caa0e9d6 Docs: OCI-images at dockerhub 2020-12-05 21:21:51 +01:00
Dominik Chilla
1e000d80b3
Merge pull request #15 from chillout2k/devel
Multiarch OCI Dockerfile
2020-12-05 20:46:15 +01:00
cd968f3c51 Multiarch OCI Dockerfile 2020-12-05 20:45:36 +01:00
3 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,5 @@
FROM alpine
ARG ARCH
FROM $ARCH/alpine
LABEL maintainer="Dominik Chilla <dominik@zwackl.de>"
LABEL git_repo="https://github.com/chillout2k/exota-milter"

View File

@ -4,7 +4,7 @@ Actually I´m going with docker-ce to build the container image, but same result
Run following command in the root directory of this repo:
```
docker build -t exota-milter:local -f OCI/Dockerfile .
docker build -t exota-milter:local --build-arg ARCH=amd64 -f OCI/Dockerfile .
[...]
Successfully built 9cceb121f604
Successfully tagged exota-milter:local

View File

@ -108,8 +108,11 @@ Finally it´s the combination of all of the above discussed aspects which may re
![Activity policy](http://www.plantuml.com/plantuml/png/5SKn3W8W30NGg-W1f8cZcuEZSN4tM8aq5ahAhyhjZMzvM-ciyIZXkgd0c0SYpv_q5DIunopErb4w4biZhg9gWVsBJj_BzRWxYw8ujJp_POQy1UisJ8LN6j7q1m00)
# How about a docker/OCI image?
## Using prebuilt images from dockerhub.com
**WIP ;-)**
## Using prebuilt images from [dockerhub](https://hub.docker.com/)
* AMD64: https://hub.docker.com/r/chillout2k/exota-milter-amd64
* ARM32v6: https://hub.docker.com/r/chillout2k/exota-milter-arm32v6
The images are built on a weekly basis. The corresponding *Dockerfile* is located [here](OCI/Dockerfile)
## Build your own image
Take a look [here](OCI/README.md)