Skip to content
Snippets Groups Projects
Select Git revision
  • b19f0e5dacb2cff01118edc7cba071e02354522e
  • master default protected
  • hsh_v3.11
  • hsh_v3.10-r6
  • hsh_v3.10-r3
  • v3.9-r9
  • v3.10-r6
  • v3.9-r8
  • v3.10-r5
  • v3.9-r7
  • v3.10-r4
  • v3.9-r6
  • v3.10-r3
  • v3.9-r5
  • v3.10-r2
  • v3.9-r4
  • v3.10-r1
  • v3.9-r3
  • v3.9-r2
  • v3.9-r1
  • v3.8-r5
  • v3.8-r4
  • v3.8-r3
  • v3.8-r2
  • v3.8-r1
25 results

core_renderer.php

Blame
  • Dockerfile 662 B
    # Use an official Python runtime as a base image
    FROM python:3
    
    # Set working directory in the container
    WORKDIR /app
    
    # install dependencies
    RUN pip install paho-mqtt 
    
    ENV DOCKERIZE_VERSION v0.6.1
    
    # Copy the Python script into the container
    COPY pub_cdm.py /app/
    
    # Set environment variable 'chunk_size' and 'number_of_insertions'
    # ENV chunk_size_insert=100
    # ENV number_of_insertions=100
    # ENV path_to_firstK='/var/lib/import/first1k.json'
    ENV path_data='C:\\Studium_MIN\\05_Masterarbeit\\thesis\\ma_code\\code\\infrastructure\\streaming\\clients\\pub\\data\\'
    ENV mos_host='mos1'
    ENV mos_port=1883
    ENV lines_per_window=1000
    
    
    
    CMD [ "python","pub_cdm.py" ]