PrivateBin
Zum schnellen Austausch von Code und Text Schnipseln betreibe ich eine PrivateBin Instanz unter bin.tomirgang.de. Auch dieser Service ist mit Hilfe von Docker-Compose im Cloud Gateway integriert.
version: '3.8'
services:
privatebin:
image: privatebin/nginx-fpm-alpine
restart: always
read_only: true
user: "1000:1000" # Run the container with the UID:GID of your Docker user
ports:
- "2203:8080"
volumes:
- ./privatebin-data:/srv/data