Skip to content

Commit

Permalink
Merge pull request #112 from Mylloon/master
Browse files Browse the repository at this point in the history
Adding docker-compose v2 schemas in README.md
  • Loading branch information
anthonyraymond committed Dec 28, 2020
2 parents 1b06d31 + 470dc97 commit 32051bd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,21 @@ docker run -d \
--joal.ui.path.prefix="SECRET_OBFUSCATION_PATH" \
--joal.ui.secret-token="SECRET_TOKEN"
```
Or the equivalent docker-compose service.
```
version: "2"
services:
joal:
image: anthonyraymond/joal
container_name: joal
restart: unless-stopped
volumes:
- PATH_TO_CONF:/data
ports:
- PORT:PORT
command: ["--joal-conf=/data", "--spring.main.web-environment=true", "--server.port=PORT", "--joal.ui.path.prefix=SECRET_OBFUSCATION_PATH", "--joal.ui.secret-token=SECRET_TOKEN"]
```

Multiple architectures are available at https://hub.docker.com/r/anthonyraymond/joal.
If you want to run on arm (raspberry) replace `anthonyraymond/joal` with `anthonyraymond/joal:X.X.X-arm` where X.X.X are the desired version of joal.

Expand Down

0 comments on commit 32051bd

Please sign in to comment.