Skip to content

Commit 4820158

Browse files
committed
📝 Adds docs for deployment to RPi and ARM-based architecutures
1 parent 1b3876c commit 4820158

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/deployment.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Once you've got Dashy up and running, you'll want to configure it with your own
2525

2626
### Deploy with Docker
2727

28+
[![Dashy on Docker Hub](https://dockeri.co/image/lissy93/dashy)](https://hub.docker.com/r/lissy93/dashy)
29+
2830
Dashy has a built container image hosted on [Docker Hub](https://hub.docker.com/r/lissy93/dashy). You will need [Docker](https://docs.docker.com/get-docker/) installed on your system.
2931

3032

@@ -43,10 +45,12 @@ Explanation of the above options:
4345
- `-v` Specify volumes, to pass data from your host system to the container, in the format of `[host-path]:[container-path]`, you can use this to pass your config file, directory of assets (like icons), custom CSS or web assets (like favicon.ico, manifest.json etc)
4446
- `--name` Give your container a human-readable name
4547
- `--restart=always` Spin up the container when the daemon starts, or after it has been stopped
46-
- `lissy93/dashy:latest` This last option is the image the container should be built from, you can also use a specific version, by replacing `:latest` with one of tthe [tags](https://hub.docker.com/r/lissy93/dashy/tags)
48+
- `lissy93/dashy:latest` This last option is the image the container should be built from, you can also use a specific version, by replacing `:latest` with one of the [tags](https://hub.docker.com/r/lissy93/dashy/tags)
4749

4850
For all available options, and to learn more, see the [Docker Run Docs](https://docs.docker.com/engine/reference/commandline/run/)
4951

52+
If you're deploying Dashy on a modern ARM-based board, such as a Raspberry Pi (2+), then you'll need to use one of Dashy's ARM images. Set the base image + tag to either `lissy93/dashy:arm64v8` or `lissy93/dashy:arm32v7`, depending on your system architecture.
53+
5054
### Using Docker Compose
5155

5256
Using Docker Compose can be useful for saving your specific config in files, without having to type out a long run command each time. Save compose config as a YAML file, and then run `docker compose up` (optionally use the `-f` flag to specify file location, if it isn't located at `./docker-compose.yml`).

0 commit comments

Comments
 (0)