Skip to content

Commit 8fccaac

Browse files
my_local_commit
1 parent d9abfce commit 8fccaac

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docker-compose.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ services:
1414
# https://stackoverflow.com/a/55706057
1515
- SYS_NICE # CAP_SYS_NICE
1616
web:
17+
platform: linux/amd64
1718
build:
1819
context: .
1920
dockerfile: ./tools/docker/Dockerfile

patchwork/settings/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@
187187
'NON_FIELD_ERRORS_KEY': 'detail',
188188
}
189189

190+
DEBUG = True
190191
#
191192
# Logging settings
192193
#

tools/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV PYTHONUNBUFFERED 1
99
ENV PROJECT_HOME /home/patchwork/patchwork
1010
ENV DJANGO_SETTINGS_MODULE patchwork.settings.dev
1111

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

0 commit comments

Comments
 (0)