fedia / $ _ Bash Prompt Generator
0 likes
0 forks
1 files
Last active
Create a custom PS1 variable for your Bash.
1 | version: '2' |
2 | services: |
3 | nginx: |
4 | image: docker.io/bitnami/nginx:1.23 |
5 | restart: unless-stopped |
6 | container_name: bashrc |
7 | ports: |
8 | - '6013:8080' |
9 | volumes: |
10 | - ./app:/app |
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: |