mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-01-18 07:17:05 +00:00
add upsnap
This commit is contained in:
parent
7a9e32c73f
commit
dd967b5f1b
|
@ -150,6 +150,7 @@ docker compose up
|
|||
### Asset Management
|
||||
- [Domainmod](examples/domainmod) - DomainMOD is an open source application used to manage your domains and other internet assets in a central location.
|
||||
- [Snipe-IT](examples/snipe-it) - Snipe-IT is a free, open source IT asset management system written in PHP.
|
||||
- [UpSnap](examples/upsnap) - A simple wake on lan app written with SvelteKit, Go, PocketBase and nmap.
|
||||
|
||||
### Backups & Syncing
|
||||
- [Duplicati](examples/duplicati) - Duplicati is a backup client that securely stores encrypted, incremental, compressed remote backups of local files on cloud storage services and remote file servers.
|
||||
|
|
3
examples/upsnap/README.md
Normal file
3
examples/upsnap/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/seriousm4x/UpSnap
|
20
examples/upsnap/docker-compose.yml
Normal file
20
examples/upsnap/docker-compose.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
version: "3"
|
||||
|
||||
services:
|
||||
upsnap:
|
||||
image: ghcr.io/seriousm4x/upsnap:3
|
||||
container_name: upsnap
|
||||
network_mode: host
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/upsnap/data:/app/pb_data
|
||||
environment:
|
||||
- TZ=Europe/Berlin # Set container timezone for cron schedules
|
||||
- UPSNAP_INTERVAL=@every 10s # Sets the interval in which the devices are pinged
|
||||
- UPSNAP_SCAN_RANGE=192.168.178.0/24 # Scan range is used for device discovery on local network
|
||||
- UPSNAP_WEBSITE_TITLE=UpSnap # Custom website title
|
||||
entrypoint: /bin/sh -c "./upsnap serve --http 0.0.0.0:5000"
|
||||
healthcheck:
|
||||
test: curl -fs "http://localhost:5000/api/health" || exit 1
|
||||
interval: 10s
|
||||
#entrypoint: /bin/sh -c "apk update && apk add --no-cache <YOUR_PACKAGE> && rm -rf /var/cache/apk/* && ./upsnap serve --http 0.0.0.0:8090"
|
Loading…
Reference in New Issue
Block a user