Skip to content

Commit

Permalink
my_local_commit
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-accarini committed Jan 27, 2025
1 parent d9abfce commit 8fccaac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
# https://stackoverflow.com/a/55706057
- SYS_NICE # CAP_SYS_NICE
web:
platform: linux/amd64
build:
context: .
dockerfile: ./tools/docker/Dockerfile
Expand Down
1 change: 1 addition & 0 deletions patchwork/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@
'NON_FIELD_ERRORS_KEY': 'detail',
}

DEBUG = True
#
# Logging settings
#
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED 1
ENV PROJECT_HOME /home/patchwork/patchwork
ENV DJANGO_SETTINGS_MODULE patchwork.settings.dev

RUN groupadd --gid=$GID patchwork && \
RUN groupadd -o --gid=$GID patchwork && \
useradd --uid=$UID --gid=$GID --create-home patchwork
RUN rm -f /etc/localtime; ln -s /usr/share/zoneinfo/$TZ /etc/localtime

Expand Down

0 comments on commit 8fccaac

Please sign in to comment.