Fix and explain user buildargs (#49)

* expose GID AND UID as optional build args

* Give examples on how to use the build-time args in docker-compose

* Prevent overwriting of build args

* Warn about using regular docker run
This commit is contained in:
peterrus
2022-03-17 15:21:04 +01:00
committed by GitHub
parent abe0dc3cb8
commit 09fa1e81e3
3 changed files with 22 additions and 9 deletions

View File

@ -15,7 +15,6 @@ services:
- ./postgres:/var/lib/postgresql/data
web:
build: .
image: pleroma
container_name: pleroma_web
healthcheck:
@ -27,6 +26,14 @@ services:
restart: always
ports:
- '4000:4000'
build:
context: .
# Feel free to remove or override this section
# See 'Build-time variables' in README.md
args:
- "UID=1000"
- "GID=1000"
- "PLEROMA_VER=v2.4.2"
volumes:
- ./uploads:/var/lib/pleroma/uploads
- ./static:/var/lib/pleroma/static