ISO-Share Stack: update to keep consistent standards
This commit is contained in:
parent
eefad0a13c
commit
18b848145e
2 changed files with 26 additions and 8 deletions
8
Docker/Docker-Compose/ISO-Share/.env.sample
Normal file
8
Docker/Docker-Compose/ISO-Share/.env.sample
Normal 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=
|
|
@ -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}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue