Advanced Search
Search Results
20 total results found
Rpi-Monitor
sudo docker run --device=/dev/vchiq --volume=/opt/vc:/opt/vc --volume=/boot:/boot --volume=/sys:/dockerhost/sys:ro --volume=/etc:/dockerhost/etc:ro --volume=/proc:/dockerhost/proc:ro --volume=/usr/lib:/dockerhost/usr/lib:ro -p=8888:8888 --name="rpi-monitor" -d...
Diun
Link 1 | Link 2 | Link 3 version: "3.3" services: diun: image: crazymax/diun:latest container_name: diun hostname: diun_dockerhost1 volumes: - /srv/path/Files/Diun/data:/data - /var/run/docker.sock:/var/run/docker.sock:...
Ouroboros
Link version: '3.3' services: ouroboros: container_name: ouroboros hostname: ouroboros image: gmt2001/ouroboros #original: pyouroboros/ouroboros not maintained environment: - MONITOR=all - SELF_UPDATE=false - ...
Watchtower
version: "3.3" services: watchtower: image: containrrr/watchtower container_name: watchtower volumes: - /var/run/docker.sock:/var/run/docker.sock environment: - TZ=Europe/Paris - ...
Scrutiny
Link version: '3.5' services: scrutiny: container_name: scrutiny image: ghcr.io/analogj/scrutiny:master-omnibus cap_add: - SYS_RAWIO # - SYS_ADMIN # for NVME drives ports: - "8384:8080" # webapp - "8086:808...
Uptime-Kuma
Link version: '3.3' services: uptime-kuma: restart: always ports: - '3001:3001' volumes: - '/srv/path/Uptime-Kuma:/app/data' container_name: uptime-kuma image: 'louislam/uptime-kuma:...
Speedtest Tracker
Link 1 | Link 2 version: '3.3' services: speedtest: container_name: speedtest-tracker image: henrywhitaker3/speedtest-tracker:dev-arm ports: - 8765:80 volumes: - /srv/path/Files/SpeedtestTrac...
Traggo
Link version: "3.7" services: traggo: image: traggo/server:latest ports: - 3030:3030 environment: TRAGGO_DEFAULT_USER_NAME: "admin" TRAGGO_DEFAULT_USER_PASS: "mynewpassword" volumes: - ./traggodata:/opt/trag...
Titra
Link | Link 2 | Link 3 version: "3.7" services: titra: image: kromit/titra container_name: titra depends_on: - mongodb environment: - ROOT_URL=http://192.168.x.x:3265 - MONGO_URL=mongodb://mongodb/titra?directConne...
Wallos
Subscription tracker Link version: '3.0' services: wallos: container_name: wallos image: bellamy/wallos:latest ports: - "8282:80/tcp" environment: TZ: 'America/Toronto' # Volumes store your data between container ...
MinMon
Link Create /srv/Files/Minmon/minmon.toml. Example config here. More info on config here. version: "3" services: minmon: image: ghcr.io/flo-at/minmon:latest volumes: - /srv/Files/Minmon/minmon.toml:/etc/minmon.toml:ro # The foll...
How do I know which container takes up the most resources in docker? Comment savoir quel conteneur prend le plus de ressources dans docker ?
There are several ways to identify the resource hog among your Docker containers. Here's a breakdown of methods you can use: 1. Using the docker stats command: This is a built-in command that provides real-time resource usage information for running containers...
Netdata
Link Find your host's FQDN hostname --fqdn version: '3' services: netdata: image: netdata/netdata container_name: netdata hostname: FDQN # set to fqdn of host ports: - 19999:19999 restart: unless-stopped cap_add: ...
Docker-webui
LinkLink 2 version: '3.3' services: docker-webui: image: macgyverbass/docker-webui container_name: docker-webui restart: unless-stopped ports: - "8900:9000" stdin_open: true tty: ...
New Speedtest Tracker
GithubInstall version: "3.3" services: speedtest-tracker: container_name: speedtest-tracker restart: unless-stopped ports: - 8080:80 environment: - PUID=998 - PGID=100 - DB_CONNECTION=sqlite volumes: ...
Umami
Link Umami is a simple, fast, privacy-focused alternative to Google Analytics. --- version: '3' services: umami: image: ghcr.io/umami-software/umami:postgresql-latest ports: - "3580:3000" #og 3000:3000 environment: DATABASE_...
Beszel Draft
https://github.com/henrygd/beszel?tab=readme-ov-file#docker services: beszel: image: 'henrygd/beszel' container_name: 'beszel-hub' restart: unless-stopped ports: - '8090:8090' volumes: - /srv/docker/beszel/data:/besze...
FreshRSS
Link FreshRSS is a self-hosted RSS feed aggregator. version: "3.3" services: freshrss: restart: unless-stopped logging: options: max-size: 10m ports: - 6327:80 environment: - TZ=Europe/Paris - CRON...
CommaFeed
Link Google Reader inspired self-hosted RSS reader, based on Quarkus and React/TypeScript. services: commafeed: image: athou/commafeed:latest-h2 restart: unless-stopped volumes: - /srv/Files/Commafeed/db:/commafeed/data deploy: ...
Portall
Github 🚢 Portall - Port Management System Portall provides an intuitive web-interface for generating, tracking, and organizing ports and services across multiple hosts. 🐳 Setup Docker Run docker run -p 8080:8080 \ -e SECRET_KEY=your_secret_key \ -e PORT=8...