abdul / Docker bench security

0 likes
0 forks
1 files
Last active 1690304152
The Docker Bench for Security is a script that checks for dozens of common best-practices around deploying Docker containers in production.
1 version: '3'
2
3 services:
4 docker-bench-security:
5 image: docker/docker-bench-security
6 container_name: docker-bench-security
7 network_mode: host
8 pid: host
9 user: root
10 cap_add:

abdul / Snapdrop

0 likes
0 forks
1 files
Last active 1690303948
local file sharing in your browser. Inspired by Apple's Airdrop. Create Reverse proxy to local port http//:localhost:81
1 version: "3"
2 services:
3 snapdrop:
4 image: lscr.io/linuxserver/snapdrop:latest
5 container_name: snapdrop
6 environment:
7 - PUID=1024
8 - PGID=100
9 - TZ=Europe/Stockholm
10 volumes:
Newer Older