Skip to content
Snippets Groups Projects
Commit 5ac16726 authored by Martina Müller's avatar Martina Müller
Browse files

Fix: change aura uid and gid to sysuser, aura#310

parent ffe1625c
No related branches found
No related tags found
1 merge request!41Change `aura` UID:GID to value in the sysuser range
Pipeline #8042 passed
......@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Changed the aura user and group ID from 2872 to 872.
- ...
### Changed
......
......@@ -2,8 +2,8 @@
FROM python:3.11-slim as base
LABEL maintainer="David Trattnig <david.trattnig@subsquare.at>"
ENV AURA_UID=2872
ENV AURA_GID=2872
ENV AURA_UID=872
ENV AURA_GID=872
# Configure Poetry
ENV POETRY_VERSION=1.3.2
......
......@@ -26,8 +26,8 @@ AURA_ENGINE_CONFIG := ${CURDIR}/config/engine.docker.yaml
AURA_AUDIO_STORE_SOURCE := ${CURDIR}/../engine-core/audio/source
AURA_AUDIO_STORE_PLAYLIST := ${CURDIR}/../engine-core/audio/playlist
AURA_LOGS := ${CURDIR}/logs
AURA_UID := 2872
AURA_GID := 2872
AURA_UID := 872
AURA_GID := 872
DOCKER_RUN = @docker run \
--name $(APP_NAME) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment