Browse Source

bundle static files in container

subDesTagesMitExtraKaese 2 years ago
parent
commit
8d60fdb769
4 changed files with 9 additions and 24 deletions
  1. 3 1
      Dockerfile
  2. 4 21
      docker-compose.yml
  3. 1 1
      nginx.conf
  4. 1 1
      project/settings.py

+ 3 - 1
Dockerfile

@@ -5,7 +5,7 @@ ENV PYTHONUNBUFFERED=1
 WORKDIR /app
 
 RUN apt-get update && \
-  apt-get install -y libmariadb-dev gcc
+  apt-get install -y libmariadb-dev gcc nginx
 
 COPY ./requirements.txt /app/
 
@@ -14,6 +14,8 @@ ARG CACHEBUST
 RUN pip install -r requirements.txt && apt-get purge -y libmariadb-dev gcc
 
 COPY . /app/
+RUN cp ./nginx.conf /etc/nginx/conf.d/default.conf && \
+  python manage.py collectstatic --noinput
 
 EXPOSE 8000
 

+ 4 - 21
docker-compose.yml

@@ -1,7 +1,7 @@
 version: "3.7"
    
 services:
-  zitap-django:
+  zitap:
     container_name: zitap-django
 
     build: .
@@ -37,29 +37,12 @@ services:
       - 'traefik.http.routers.zitap.tls=true'
       - 'traefik.http.routers.zitap.service=zitap'
       - 'traefik.http.services.zitap.loadbalancer.server.port=8000'
-  
-  zitap-static:
-    container_name: zitap-static
-    image: nginx
-
-    restart: unless-stopped
-
-    volumes:
-      - ./nginx.conf:/etc/nginx/conf.d/default.conf
-      - ./static:/etc/nginx/html/static
-
-    networks:
-      - proxy
-
-    depends_on:
-      - zitap-django
-
-    labels:
-      - 'traefik.enable=true'
+      
       - 'traefik.http.routers.zitap-static.rule=Host(`zitap.example.com`) && PathPrefix(`/static/`)'
+      - 'traefik.http.routers.zitap-static.entrypoints=https'
       - 'traefik.http.routers.zitap-static.tls=true'
       - 'traefik.http.routers.zitap-static.service=zitap-static'
-      - 'traefik.http.services.zitap-static.loadbalancer.server.port=8000'
+      - 'traefik.http.services.zitap-static.loadbalancer.server.port=80'
 
 networks:
   mysql:

+ 1 - 1
nginx.conf

@@ -1,5 +1,5 @@
 server {
-  listen 8000;
+  listen 80;
   server_name  localhost;
   location ^/static {
     try_files $uri $uri/ =404;

+ 1 - 1
project/settings.py

@@ -143,7 +143,7 @@ USE_TZ = True
 
 STATIC_URL = 'static/'
 
-STATIC_ROOT = '../static'
+STATIC_ROOT = '/etc/nginx/html/static'
 
 # Default primary key field type
 # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field