-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-enabled docks builds, updated docs
- Loading branch information
1 parent
cfa0a0e
commit 5c8787f
Showing
3 changed files
with
48 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# Setup with Docker | ||
|
||
Docker images are available @ https://hub.docker.com/r/shukriadams/arewedown. Find an up-to-date tag there (this project does not build `:latest`). If you intend to run on a Pi, use `<TAG>-arm` | ||
|
||
- An example docker-compose.yml is | ||
|
||
version: "2" | ||
services: | ||
arewedown: | ||
image: shukriadams/arewedown:<TAG-HERE> | ||
container_name: arewedown | ||
restart: unless-stopped | ||
volumes: | ||
- ./config:/etc/arewedown/config | ||
- ./logs:/etc/arewedown/logs/:rw | ||
# - ./scripts:/etc/arewedown/custom-tests # optional, see "custom tests" section of documentation | ||
ports: | ||
- "3000:3000" | ||
|
||
- Two directory volume mounts are required, one for logs, the other for config. | ||
- Ensure write access to the `logs` directory, the container runs with user id 1000, use `chown -R 1000 path/to/logs` to enable writes, or the app will fail. | ||
# Setup with Docker | ||
|
||
Docker images are available @ https://hub.docker.com/r/shukriadams/arewedown. Find an up-to-date tag there (this project does not build `:latest`). If you intend to run on a Raspberry Pi, use `<TAG>-arm` | ||
|
||
- An example docker-compose.yml is | ||
|
||
version: "2" | ||
services: | ||
arewedown: | ||
image: shukriadams/arewedown:<TAG> | ||
container_name: arewedown | ||
restart: unless-stopped | ||
volumes: | ||
- ./config:/etc/arewedown/config | ||
- ./logs:/etc/arewedown/logs/:rw | ||
# - ./scripts:/etc/arewedown/custom-tests # optional, see "custom tests" section of documentation | ||
ports: | ||
- "3000:3000" | ||
|
||
- Two directory volume mounts are required, one for logs, the other for config. | ||
- Ensure write access to the `logs` directory, the container runs with user id 1000, use `chown -R 1000 path/to/logs` to enable writes, or the app will fail. | ||
- Create an empty `settings.yml` file in the config directory, this is where all application settings live. |