32 lines
683 B
YAML
32 lines
683 B
YAML
---
|
|
|
|
# PrivateBin
|
|
# An opensource Pastebin zero-knowledge server
|
|
# Created by Pastebin
|
|
# ↳ https://github.com/PrivateBin/PrivateBin
|
|
|
|
services:
|
|
privatebin:
|
|
image: privatebin/nginx-fpm-alpine:latest
|
|
container_name: privatebin
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 8080:8080
|
|
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /home/fxequals/docker/privatebin/data:/srv/data # sudo chown 65534:82 on host folder
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
# Documentation available at https://github.com/PrivateBin/docker-nginx-fpm-alpine |