forked from mirrors/ntfy
Merge branch 'main' of github.com:binwiederhier/ntfy into main
This commit is contained in:
commit
1fd327325f
1 changed files with 8 additions and 0 deletions
|
@ -181,6 +181,14 @@ docker run \
|
|||
serve
|
||||
```
|
||||
|
||||
Alternatively, you may wish to build a customized Docker image that can be run with fewer command-line arguments and without delivering the configuration file separately.
|
||||
```
|
||||
FROM binwiederhier/ntfy
|
||||
COPY server.yml /etc/ntfy/server.yml
|
||||
ENTRYPOINT ["ntfy", "serve"]
|
||||
```
|
||||
This image can be pushed to a container registry and shipped independently. All that's needed when running it is mapping ntfy's port to a host port.
|
||||
|
||||
## Go
|
||||
To install via Go, simply run:
|
||||
```bash
|
||||
|
|
Loading…
Reference in a new issue