app-store/apps/privatebin/docker-compose.yml
Seth For Privacy 4ad3219156
Add PrivateBin
2022-09-09 09:37:49 -04:00

22 lines
670 B
YAML

version: "3.7"
services:
privatebin:
image: privatebin/nginx-fpm-alpine:latest
container_name: privatebin
dns:
- ${DNS_IP}
ports:
- ${APP_PORT}:8080
restart: unless-stopped
networks:
- tipi_main_network
volumes:
- ${APP_DATA_DIR}/data:/srv/data
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.privatebin.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.privatebin.entrypoints: websecure
traefik.http.routers.privatebin.service: privatebin
traefik.http.routers.privatebin.tls.certresolver: myresolver
traefik.http.services.privatebin.loadbalancer.server.port: 8080