mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
Container: Fix build instructions
This commit is contained in:
parent
fbf43f2a31
commit
8d94ae4cb0
16
CONTAINER.md
16
CONTAINER.md
@ -256,10 +256,10 @@ That OTP release is configured with:
|
|||||||
Build ejabberd Community Server base image from ejabberd master on GitHub:
|
Build ejabberd Community Server base image from ejabberd master on GitHub:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
VERSION = master
|
VERSION=master
|
||||||
docker build \
|
docker build \
|
||||||
--build-arg VERSION=$(VERSION) \
|
--build-arg VERSION=$VERSION \
|
||||||
-t personal/ejabberd:$(VERSION) \
|
-t personal/ejabberd:$VERSION \
|
||||||
.github/container
|
.github/container
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -267,11 +267,11 @@ Build ejabberd Community Server base image for a given ejabberd version,
|
|||||||
both for amd64 and arm64 architectures:
|
both for amd64 and arm64 architectures:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
VERSION = 22.05
|
VERSION=22.05
|
||||||
docker buildx build \
|
docker buildx build \
|
||||||
--platform=linux/amd64,linux/arm64
|
--platform=linux/amd64,linux/arm64
|
||||||
--build-arg VERSION=$(VERSION) \
|
--build-arg VERSION=$VERSION \
|
||||||
-t personal/ejabberd:$(VERSION) \
|
-t personal/ejabberd:$VERSION \
|
||||||
.github/container
|
.github/container
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -280,9 +280,9 @@ It's also possible to use podman instead of docker, just notice:
|
|||||||
- It mentions that `healthcheck` is not supported by the Open Container Initiative image format
|
- It mentions that `healthcheck` is not supported by the Open Container Initiative image format
|
||||||
- If you want to start with command `live`, add environment variable `EJABBERD_BYPASS_WARNINGS=true`
|
- If you want to start with command `live`, add environment variable `EJABBERD_BYPASS_WARNINGS=true`
|
||||||
```bash
|
```bash
|
||||||
VERSION = master
|
VERSION=master
|
||||||
podman build \
|
podman build \
|
||||||
--build-arg VERSION=$(VERSION) \
|
--build-arg VERSION=$VERSION \
|
||||||
-t ja:$(version) \
|
-t ja:$(version) \
|
||||||
.github/container
|
.github/container
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user