app-store/apps/littlelink-custom/docker-compose.yml

29 lines
963 B
YAML
Raw Normal View History

2023-03-20 21:58:25 +00:00
version: '3.7'
2023-03-01 19:10:23 +00:00
services:
littlelink-custom:
2023-03-20 21:58:25 +00:00
container_name: littlelink-custom
2023-03-01 19:10:23 +00:00
hostname: 'littlelink-custom'
image: 'julianprieber/littlelink-custom:latest'
environment:
- TZ=${TZ}
2023-03-20 21:58:25 +00:00
- SERVER_ADMIN=${LITTLELINK_CUSTOM_EMAIL}
2023-03-01 19:10:23 +00:00
- HTTP_SERVER_NAME=${APP_DOMAIN}
- LOG_LEVEL=info
- PHP_MEMORY_LIMIT=256M
- UPLOAD_MAX_FILESIZE=8M
volumes:
- '${APP_DATA_DIR}/data/littlelink/htdocs:/htdocs'
ports:
- '${APP_PORT}:443'
restart: unless-stopped
networks:
- tipi_main_network
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.littlelink-custom.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.littlelink-custom.entrypoints: websecure
traefik.http.routers.littlelink-custom.service: littlelink-custom
traefik.http.routers.littlelink-custom.tls.certresolver: myresolver
2023-03-20 21:58:25 +00:00
traefik.http.services.littlelink-custom.loadbalancer.server.port: 443