20 lines
434 B
YAML
20 lines
434 B
YAML
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
|
|
networks:
|
|
proxy:
|
|
external: true
|