tracerrx / Greenbone GSM
2 likes
0 forks
1 files
Last active
Automated Vulnerability Scanner and Management
1 | services: |
2 | vulnerability-tests: |
3 | image: greenbone/vulnerability-tests |
4 | environment: |
5 | STORAGE_PATH: /var/lib/openvas/22.04/vt-data/nasl |
6 | volumes: |
7 | - vt_data_vol:/mnt |
8 | |
9 | notus-data: |
10 | image: greenbone/notus-data |
MSHorne89 / Plex, TVHeadent, Antennas
2 likes
0 forks
1 files
Last active
If you like to set up Live TV in Plex with your own Sat>IP Server (In Hostmode)
1 | version: "3" |
2 | services: |
3 | plex: |
4 | image: linuxserver/plex:latest |
5 | container_name: plex |
6 | network_mode: host |
7 | environment: |
8 | - PUID=1026 |
9 | - PGID=100 |
10 | - TZ=Europe/Berlin |
MSHorne89 / AdGuard on macvlan
0 likes
0 forks
1 files
Last active
For existing Synology DNS Server + AdGuard Server. AdGuard on macvlan incl. bridge and fully ipv6 support (only for fix ipv6 address)
1 | version: "3" |
2 | services: |
3 | adguard: |
4 | image: adguard/adguardhome:latest |
5 | container_name: adguard |
6 | volumes: |
7 | - /volume1/docker/adguard/config:/opt/adguardhome/conf |
8 | - /volume1/docker/adguard/data:/opt/adguardhome/work/data |
9 | restart: always |
10 | networks: |
PiotrZWarszawy / Jellyfin Hardware Encoding in 920+
0 likes
0 forks
1 files
Last active
Working Portainer stack for hardware endocing version of Jellyfin in 920+. In Jellyfin settings You have to disable all 'Intel Low-Power' checkdox!
1 | version: "2" |
2 | services: |
3 | jellyfin: |
4 | image: jellyfin/jellyfin:latest |
5 | container_name: Jellyfin |
6 | environment: |
7 | - TZ=Europe/Warsaw |
8 | - PGID=1026 |
9 | - PUID=100 |
10 | - JELLYFIN_DATA_DIR=/shared_config |
Moncho / Composerize
4 likes
0 forks
1 files
Last active
Say goodbye to sprawling docker commands and say hello to $ docker-compose up :)
1 | version: "3.3" |
2 | |
3 | services: |
4 | |
5 | composerize: |
6 | image: alcapone1933/composerize |
7 | container_name: composerize |
8 | restart: unless-stopped |
9 | ports: |
10 | - "10000:80" |