39 lines
851 B
Markdown
39 lines
851 B
Markdown
# changeDetection
|
|
|
|
|
|
|
|
|
|
|
|
| Création | dockge |
|
|
| ----------- | -------------------------------------------------------- |
|
|
| Mise-à-jour | Watchtower |
|
|
| Ports | 5075 |
|
|
| Liens | [Github](https://github.com/dgtlmoon/changedetection.io) |
|
|
|
|
|
|
|
|
```yaml
|
|
version: '3.2'
|
|
services:
|
|
changedetection:
|
|
image: ghcr.io/dgtlmoon/changedetection.io
|
|
container_name: changedetection
|
|
hostname: changedetection
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|
|
volumes:
|
|
- changedetection-data:/datastore
|
|
ports:
|
|
- 5075:5000
|
|
volumes:
|
|
changedetection-data:
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.16.57.0/24
|
|
|
|
```
|
|
|