mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 12:31:13 +00:00
37c9706a52
adjust traefik labels
28 lines
1.7 KiB
YAML
28 lines
1.7 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
privatebin:
|
|
hostname: privatebin
|
|
container_name: privatebin
|
|
image: privatebin/nginx-fpm-alpine:latest
|
|
read_only: true # not in compose 3.0 documentation but appears supported based
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/privatebin/data:/srv/data # volume for persisted data pastes
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/privatebin/configs/config.php:/srv/cfg/conf.php:ro # volume for custom privatebin config; please place the config.php file here
|
|
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/privatebin/configs/nginx.conf:/etc/nginx/nginx.conf:ro # optional; custom nginx container config to increase file upload size
|
|
#- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/privatebin/configs/php.ini:/etc/php82/conf.d/00-docker.ini:ro # optional; custom php container config to increase file upload size
|
|
restart: always
|
|
#labels:
|
|
# - traefik.enable=true
|
|
# - traefik.http.routers.privatebin.rule=Host(`privatebin.example.com`)
|
|
# - traefik.http.services.privatebin.loadbalancer.server.port=8080
|
|
# - traefik.docker.network=proxy
|
|
# # Part for local lan services only
|
|
# # - traefik.http.routers.privatebin.middlewares=local-ipwhitelist@file
|
|
# - traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=1000000000 # necessary to enable large file uploads
|
|
# - traefik.http.middlewares.limit.buffering.maxResponseBodyBytes=1000000000 # necessary to enable large file uploads
|
|
# - traefik.http.middlewares.limit.buffering.memRequestBodyBytes=2000000000 # necessary to enable large file uploads
|
|
# - traefik.http.middlewares.limit.buffering.memResponseBodyBytes=2000000000 # necessary to enable large file uploads
|