haxqer / jira

The simplest docker file of JIRA. Support v9.17.3(latest) v10.0.1(latest) and v9.12.13(lts)
https://hub.docker.com/r/haxqer/jira
461 stars 259 forks source link

Ability to change UID and GID for user and group in a container #26

Open varyhin opened 1 year ago

varyhin commented 1 year ago

Please add the ability to change UID and GID for user and group in a container (Dockerfile)

ARG UID=1000 ARG GID=1000

&& groupadd -g $GID -o $JIRA_GROUP && useradd -m -u $UID -g $GID -o $JIRA_USER \

haxqer commented 10 months ago

You can modify it based on this Docker file and compile it into your own image: docker build -t varyhin/jira:latest .