services: start: image: start build: context: python dockerfile: start python: image: python build: context: python dockerfile: python depends_on: - start django4: image: django4 build: context: python dockerfile: django4 depends_on: - python ports: - 8100:8100 volumes: - /home/data:/home/data environment: - PORT=8100 - V=4 entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped nginx.d4: image: nginx.d4 build: context: nginx.d4 dockerfile: nginx.d4 ports: - 8105:80 volumes: - /home/data:/home/data - /home/data/dashboard4.nginx:/etc/nginx entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped depends_on: - start django5: image: django5 build: context: python dockerfile: django5 depends_on: - python ports: - 8110:8110 volumes: - /home/data:/home/data environment: - PORT=8110 - V=5 entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped nginx.d5: image: nginx.d5 build: context: nginx.d5 dockerfile: nginx.d5 ports: - 8115:80 volumes: - /home/data:/home/data - /home/data/dashboard5.nginx:/etc/nginx entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped depends_on: - start bpconverter: image: django.bcp build: context: python dockerfile: django.bpc depends_on: - python ports: - 8120:8120 volumes: - /home/data/bpconverter:/home/bpconverter environment: - PORT=8120 - V=5 entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped bpconverter.nginx: image: nginx.bpc build: context: nginx.bpc dockerfile: nginx.bpc ports: - 8125:80 volumes: - /home/data/bpconverter.nginx:/etc/nginx - /home/data/bpconverter:/home/bpconverter entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped depends_on: - start gd: image: django.gd build: context: python dockerfile: django.gd depends_on: - python ports: - 8130:8130 volumes: - /home/data/gd:/home/gd environment: - PORT=8130 - V=5 entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped mosquitto: image: mosquitto build: context: mosquitto dockerfile: mosquitto ports: - 1881:1881 volumes: - /home/data/mosquitto.server:/etc/mosquitto entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped depends_on: - start mosquitto.d4: image: mosquitto.d4 build: context: mosquitto.d4 dockerfile: mosquitto.d4 volumes: - /home/data:/home/data - /home/data/mosquitto.d4:/home/data/mosquitto.d4 entrypoint: ['/bin/bash','/root/run.sh'] restart: unless-stopped depends_on: - django4