mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 17:05:47 +01:00
Update README.md
This commit is contained in:
13
README.md
13
README.md
@@ -99,8 +99,14 @@ _Requirements_:
|
|||||||
- [Docker](https://docs.docker.com/get-docker/)
|
- [Docker](https://docs.docker.com/get-docker/)
|
||||||
|
|
||||||
**Standard Docker Install**
|
**Standard Docker Install**
|
||||||
```sh
|
```bash
|
||||||
docker run --name homarr --restart unless-stopped -p 7575:7575 -v /data/docker/homarr:/app/data/configs -d ghcr.io/ajnart/homarr:latest
|
docker run \
|
||||||
|
--name homarr \
|
||||||
|
--restart unless-stopped \
|
||||||
|
-p 7575:7575 \
|
||||||
|
-v ./homarr/configs:/app/data/configs \
|
||||||
|
-v ./homarr/icons:/app/public/icons \
|
||||||
|
-d ghcr.io/ajnart/homarr:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
**Docker Compose**
|
**Docker Compose**
|
||||||
@@ -116,7 +122,8 @@ services:
|
|||||||
image: ghcr.io/ajnart/homarr:latest
|
image: ghcr.io/ajnart/homarr:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /data/docker/homarr:/app/data/configs
|
- ./homarr/configs:/app/data/configs
|
||||||
|
- ./homarr/icons:/app/public/icons
|
||||||
ports:
|
ports:
|
||||||
- '7575:7575'
|
- '7575:7575'
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user