blob: f965b1f3a444843ea176f3abbc18fcbbfa9556db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
services:
privatebin:
image: privatebin/nginx-fpm-alpine:latest
container_name: privatebin
restart: unless-stopped
read_only: true
environment:
- TZ=Europe/Warsaw
ports:
- "127.0.0.1:8081:8080"
volumes:
- ./data:/srv/data
- ./cfg/conf.php:/srv/cfg/conf.php:ro
tmpfs:
- /tmp
- /var/tmp
networks:
- web
networks:
web:
driver: bridge
|