mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-15 04:18:34 +05:30
Merge pull request #52 from EpicureanHeron/patch-1
Docker compose file example
This commit is contained in:
commit
64e1dd5b83
1 changed files with 14 additions and 0 deletions
14
README.md
14
README.md
|
|
@ -78,9 +78,23 @@ Stay tuned as we continue to expand and improve our collection!
|
||||||
|
|
||||||
## Self-host/Run
|
## Self-host/Run
|
||||||
|
|
||||||
|
### Docker
|
||||||
```bash
|
```bash
|
||||||
docker run -d --name omni-tools --restart unless-stopped -p 8080:80 iib0011/omni-tools:latest
|
docker run -d --name omni-tools --restart unless-stopped -p 8080:80 iib0011/omni-tools:latest
|
||||||
```
|
```
|
||||||
|
### Docker Compose
|
||||||
|
```
|
||||||
|
version: '3.3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
omni-tools:
|
||||||
|
image: iib0011/omni-tools:latest
|
||||||
|
container_name: omni-tools
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue