diff --git a/Dockerfile b/Dockerfile index 379a4e1..a0d3f99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN pip install --no-cache-dir --upgrade pip && \ COPY app /app/app COPY config /app/config -COPY templates /app/templates COPY .env.example /app/.env.example EXPOSE 18080 diff --git a/docker-compose.yaml b/docker-compose.yaml index 7719bce..0ed5075 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,5 +10,5 @@ services: - .env volumes: - ./config:/app/config:ro - - ./data:/app/data + - ${APP_DATA_DIR:-../sub-provider-data}:/app/data - ./output:/app/output