Document podman/buildah

This commit is contained in:
Alexander Hofbauer 2020-09-26 22:21:25 +02:00
parent ad729642be
commit 3c264e164a
No known key found for this signature in database
GPG key ID: 021919ED6A786C62

View file

@ -3,7 +3,17 @@
## Usage ## Usage
### CLI ### Podman CLI
```sh
podman run \
--name=onlyoffice \
--detach \
--publish=80:80 \
docker.io/alehoho/oo-ce-docker-license
```
### Docker CLI
```sh ```sh
docker run \ docker run \
@ -27,7 +37,15 @@ services:
## Build ## Build
### CLI ### Buildah CLI
```sh
buildah build-using-dockerfile \
--tag=onlyoffice-patched \
https://github.com/aleho/onlyoffice-ce-docker-license.git
```
### Docker CLI
```sh ```sh
docker build \ docker build \
@ -35,13 +53,6 @@ docker build \
https://github.com/aleho/onlyoffice-ce-docker-license.git https://github.com/aleho/onlyoffice-ce-docker-license.git
``` ```
```sh
docker run \
--name=onlyoffice \
--detach \
onlyoffice-patched
```
### docker-compose.yml ### docker-compose.yml