steveternet/privatebin/docker-compose.yml

18 lines
359 B
YAML
Raw Normal View History

2023-12-24 18:54:49 +00:00
version: "3.8"
services:
privatebin:
image: privatebin/nginx-fpm-alpine:latest
container_name: privatebin
restart: unless-stopped
environment:
- DOMAIN_ROOT=${DOMAIN_ROOT}
volumes:
- privatebin_data:/srv/data
- ./cfg/conf.php:/srv/cfg/conf.php:ro
networks:
- web
2023-12-24 18:54:49 +00:00
volumes:
privatebin_data:
external: true