2024-11-09 00:49:01 +00:00
|
|
|
# documentation: https://github.com/PrivateBin/PrivateBin/blob/master/doc/README.md
|
2024-11-25 12:51:06 +00:00
|
|
|
# slogan: PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data.
|
2025-08-17 16:23:57 +00:00
|
|
|
# category: security
|
2024-11-09 00:49:01 +00:00
|
|
|
# tags: text, sharing
|
2024-11-13 21:28:50 +00:00
|
|
|
# logo: svgs/privatebin.svg
|
2024-11-09 00:49:01 +00:00
|
|
|
# port: 8080
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
privatebin:
|
|
|
|
|
image: privatebin/nginx-fpm-alpine
|
|
|
|
|
environment:
|
2025-08-10 08:10:22 +00:00
|
|
|
- SERVICE_URL_PRIVATEBIN_8080
|
2024-11-09 00:49:01 +00:00
|
|
|
volumes:
|
2024-11-25 12:41:43 +00:00
|
|
|
- privatebin_data:/srv/data
|
2024-11-15 17:17:03 +00:00
|
|
|
healthcheck:
|
2024-11-15 17:23:39 +00:00
|
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8080/"]
|
|
|
|
|
interval: 5s
|
|
|
|
|
timeout: 20s
|
|
|
|
|
retries: 10
|