From 3d68aad464b245d173d1fe86d0f426c4133cc41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Ple=C3=9F?= Date: Thu, 27 Feb 2025 14:58:05 +0100 Subject: [PATCH] =?UTF-8?q?Einstellungen=20in=20env=20file=20verschoben=20?= =?UTF-8?q?und=20Logging=20f=C3=BCr=20stdout=20eingestellt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- Dockerfile | 4 +++- docker-compose.yml | 10 +++++++--- entrypoint.sh | 6 ++++++ 4 files changed, 18 insertions(+), 5 deletions(-) create mode 100644 entrypoint.sh diff --git a/.gitignore b/.gitignore index 4edd750..aa4cbd4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode -__pycache__ \ No newline at end of file +__pycache__ +.env \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index de7374c..22e547b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,11 @@ FROM python:3.10-alpine AS production-stage WORKDIR /app COPY ./backend /app/backend +COPY ./entrypoint.sh /entrypoint.sh #RUN mkdir /app/static RUN pip install --no-cache-dir -r backend/requirements.txt COPY --from=build-stage /app/dist /app/frontend/dist/ EXPOSE 8080 -CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--chdir", "backend", "app:app"] \ No newline at end of file + +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index cdfce7a..b282470 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,11 @@ services: build: . container_name: local_single restart: always - environment: - - APP_NAME=VueApp + env_file: + - .env ports: - - "8080:8080" \ No newline at end of file + - "8080:8080" + logging: + driver: "json-file" + options: + max-size: "10m" \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..b33a37d --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,6 @@ +#!/bin/sh +gunicorn app:app \ + --bind 0.0.0.0:8080 \ + --chdir backend \ + --access-logfile '-' \ + --error-logfile '-' \ No newline at end of file