24 líneas
401 B
YAML
24 líneas
401 B
YAML
version: '2'
|
|
|
|
services:
|
|
privatebin:
|
|
image: privatebin/nginx-fpm-alpine
|
|
restart: always
|
|
container_name: privatebin
|
|
hostname: privatebin
|
|
volumes:
|
|
- ./data:/srv/data
|
|
read_only: true
|
|
expose:
|
|
- 8080
|
|
networks:
|
|
mynet:
|
|
ipv4_address: 172.118.0.101
|
|
|
|
networks:
|
|
mynet:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.118.0.0/24
|