You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pastey/docker-compose.yml

25 lines
557 B

services:
pastey:
image: cesura/pastey:latest
environment:
PASTEY_LISTEN_PORT: 5000
PASTEY_DEFAULT_THEME: Dark
PASTEY_BEHIND_PROXY: "true"
PASTEY_FORCE_SHOW_RECENT: "true"
PASTEY_RESTRICT_PASTING: "true"
PASTEY_WHITELIST_CIDR: "127.0.0.1/32,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16"
PASTEY_RECENT_PASTES: 20
volumes:
- "pastey-data:/app/data"
ports:
- "5000:5000"
restart: unless-stopped
networks:
- pastey-network
volumes:
pastey-data:
networks:
pastey-network: {}