docker-bits/lsio/xbackbone/docker-run.sh

18 lines
877 B
Bash
Raw Normal View History

2021-06-07 01:14:19 +00:00
# [Xbackbone](https://github.com/SergiX44/XBackBone) is a simple, self-hosted,
# lightweight PHP file manager that support the instant sharing tool ShareX and
# *NIX systems. It supports uploading and displaying images, GIF, video, code,
# formatted text, and file downloading and uploading. Also have a web UI with
# multi user management, past uploads history and search support.
source ./.env
docker run -d \
--name=xbackbone \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2023-02-26 14:51:38 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
2021-06-07 01:14:19 +00:00
-p 80:80 `# http gui` \
-p 443:443 `# https gui` \
-v ${BASEDIR:-/volume1/docker}/xbackbone/config:/config `# config directory volume mapping` \
--restart unless-stopped \
ghcr.io/linuxserver/xbackbone