syntax linting
This commit is contained in:
32
obsidian-logic/privatebin/docker-compose.yml
Normal file
32
obsidian-logic/privatebin/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
|
||||
# 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
|
Reference in New Issue
Block a user