ISO-Share Stack: update to keep consistent standards

This commit is contained in:
Aroy-Art 2025-06-16 21:17:18 +02:00
parent eefad0a13c
commit 18b848145e
Signed by: Aroy
GPG key ID: DB9689E9391DD156
2 changed files with 26 additions and 8 deletions

View file

@ -0,0 +1,8 @@
# Main web ui port
MAIN_PORT=
# Path to directory of file you want to share.
SHARE_PATH=
# Loki log monitoring url
LOKI_URL=

View file

@ -1,9 +1,19 @@
version: "3"
name: iso-share-stack
services:
iso-share:
ports:
- 8082:80
volumes:
- /mnt/ISOs:/opt/www/files/
restart: unless-stopped
image: git.aroy-art.com/aroy/iso-share:latest
##############################################
# 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}"