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
|
|
|
|
|
2023-12-26 22:40:54 +00:00
|
|
|
networks:
|
|
|
|
- web
|
2023-12-24 18:54:49 +00:00
|
|
|
volumes:
|
|
|
|
privatebin_data:
|
2023-12-26 22:40:54 +00:00
|
|
|
external: true
|