Use user name instead of userid
Nginx unit needs the user and group parameter as names.
This commit is contained in:
parent
c9b3edd0f1
commit
5679ab435f
|
@ -95,6 +95,7 @@ WORKDIR /opt/netbox/netbox
|
||||||
# Must set permissions for '/opt/netbox/netbox/media' directory
|
# Must set permissions for '/opt/netbox/netbox/media' directory
|
||||||
# to g+w so that pictures can be uploaded to netbox.
|
# to g+w so that pictures can be uploaded to netbox.
|
||||||
RUN mkdir -p static /opt/unit/state/ /opt/unit/tmp/ \
|
RUN mkdir -p static /opt/unit/state/ /opt/unit/tmp/ \
|
||||||
|
&& chown -R unit:root media /opt/unit/ \
|
||||||
&& chmod -R g+w media /opt/unit/ \
|
&& chmod -R g+w media /opt/unit/ \
|
||||||
&& cd /opt/netbox/ && /opt/netbox/venv/bin/python -m mkdocs build \
|
&& cd /opt/netbox/ && /opt/netbox/venv/bin/python -m mkdocs build \
|
||||||
--config-file /opt/netbox/mkdocs.yml --site-dir /opt/netbox/netbox/project-static/docs/ \
|
--config-file /opt/netbox/mkdocs.yml --site-dir /opt/netbox/netbox/project-static/docs/ \
|
||||||
|
|
|
@ -9,7 +9,7 @@ services:
|
||||||
env_file: env/netbox.env
|
env_file: env/netbox.env
|
||||||
environment:
|
environment:
|
||||||
SKIP_STARTUP_SCRIPTS: ${SKIP_STARTUP_SCRIPTS-false}
|
SKIP_STARTUP_SCRIPTS: ${SKIP_STARTUP_SCRIPTS-false}
|
||||||
user: '101'
|
user: 'unit:root'
|
||||||
volumes:
|
volumes:
|
||||||
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
|
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
|
||||||
- ./${INITIALIZERS_DIR-initializers}:/opt/netbox/initializers:z,ro
|
- ./${INITIALIZERS_DIR-initializers}:/opt/netbox/initializers:z,ro
|
||||||
|
|
|
@ -8,7 +8,7 @@ services:
|
||||||
- redis-cache
|
- redis-cache
|
||||||
- netbox-worker
|
- netbox-worker
|
||||||
env_file: env/netbox.env
|
env_file: env/netbox.env
|
||||||
user: '101'
|
user: 'unit:root'
|
||||||
volumes:
|
volumes:
|
||||||
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
|
- ./startup_scripts:/opt/netbox/startup_scripts:z,ro
|
||||||
- ./initializers:/opt/netbox/initializers:z,ro
|
- ./initializers:/opt/netbox/initializers:z,ro
|
||||||
|
|
|
@ -52,5 +52,5 @@ exec unitd \
|
||||||
--log /dev/stdout \
|
--log /dev/stdout \
|
||||||
--state /opt/unit/state/ \
|
--state /opt/unit/state/ \
|
||||||
--tmp /opt/unit/tmp/ \
|
--tmp /opt/unit/tmp/ \
|
||||||
--user 101 \
|
--user unit \
|
||||||
--group 0
|
--group root
|
||||||
|
|
Loading…
Reference in New Issue