28 lines
693 B
YAML
28 lines
693 B
YAML
# documentation: https://github.com/PrivateBin/PrivateBin/blob/master/doc/README.md
|
|
# PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data.
|
|
# tags: text, sharing
|
|
# logo: svgs/privatebin.svg
|
|
# port: 8080
|
|
|
|
services:
|
|
privatebin:
|
|
image: privatebin/nginx-fpm-alpine
|
|
restart: always
|
|
read_only: true
|
|
environment:
|
|
- SERVICE_FQDN_PRIVATEBIN_8080
|
|
volumes:
|
|
- 'privatebin-data:/srv/data'
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- wget
|
|
- '--spider'
|
|
- '-q'
|
|
- 'http://localhost:8080/'
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
disable: false
|