19 lines
569 B
YAML
19 lines
569 B
YAML
name: iso-share-stack
|
|
|
|
services:
|
|
##############################################
|
|
# ISO-Share
|
|
# Simple service for sharing a directory with a nice web ui.
|
|
# Project Source: https://git.aroy-art.com/Aroy/ISO-Share
|
|
##############################################
|
|
iso-share:
|
|
image: git.aroy-art.com/aroy/iso-share:latest
|
|
ports:
|
|
- ${MAIN_PORT:-8082}:80
|
|
volumes:
|
|
- ${SHARE_PATH:-./Share}:/opt/www/files/
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: loki
|
|
options:
|
|
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"
|