Màj 06-04-2024
This commit is contained in:
49
docs/Synology/Docker/docker-compose/scrutiny.md
Normal file
49
docs/Synology/Docker/docker-compose/scrutiny.md
Normal file
@@ -0,0 +1,49 @@
|
||||
# Scrutiny
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
| Création | Container Manager (projet) |
|
||||
| ----------- | --------------------------------------------- |
|
||||
| Mise-à-jour | Watchtower |
|
||||
| Port | 6070 |
|
||||
| Liens | [Github](https://github.com/AnalogJ/scrutiny) |
|
||||
|
||||
|
||||
|
||||
```yaml
|
||||
services:
|
||||
scrutiny:
|
||||
container_name: scrutiny
|
||||
image: ghcr.io/analogj/scrutiny:master-omnibus
|
||||
cap_add:
|
||||
- SYS_RAWIO
|
||||
- SYS_ADMIN
|
||||
ports:
|
||||
- "6070:8080" # webapp
|
||||
- "8086:8086" # influxDB administration
|
||||
volumes:
|
||||
- /run/udev:/run/udev:ro
|
||||
- /volume1/docker/scrutiny:/opt/scrutiny/config
|
||||
- /volume1/docker/scrutiny/influxdb:/opt/scrutiny/influxdb
|
||||
devices:
|
||||
# - /dev/nvme0n1:/dev/nvme0n1
|
||||
# - /dev/nvme1n1:/dev/nvme1n1
|
||||
- /dev/sata1:/dev/sata1
|
||||
- /dev/sata2:/dev/sata2
|
||||
- /dev/sata3:/dev/sata3
|
||||
- /dev/sata4:/dev/sata4
|
||||
# - /dev/sata5:/dev/sata5
|
||||
# - /dev/sata6:/dev/sata6
|
||||
# - /dev/sata7:/dev/sata7
|
||||
# - /dev/sata8:/dev/sata8
|
||||
environment:
|
||||
- SCRUTINY_WEB_INFLUXDB_TOKEN='eo5Kc?t9T/Yrl054Edh6bJYNbhOH3blnWHqDcLHc4ml2ur/IF6?pR1v4BHd!bfB01Qu4pQyPs!?AiBa-8WGoSrkpjdQ'
|
||||
- SCRUTINY_WEB_INFLUXDB_INIT_USERNAME='bruno'
|
||||
- SCRUTINY_WEB_INFLUXDB_INIT_PASSWORD='j8s!hJVWCuu*z*LU'
|
||||
- TIMEZONE=Europe/Paris
|
||||
restart: unless-stopped
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user