2021-04-21 00:55:42 +00:00
|
|
|
# [Chevereto](https://github.com/Chevereto/Chevereto-Free) is an image hosting
|
|
|
|
# software that allows you to create a beautiful and full-featured image hosting
|
|
|
|
# website on your own server. It's your hosting and your rules, so say goodbye
|
|
|
|
# to closures and restrictions.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=chevereto \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 80:80 `# http gui` \
|
|
|
|
-p 443:443 `# https gui` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/chevereto/config:/config `# config directory volume mapping` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/chevereto/data:/data `# data directory volume mapping` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/chevereto
|