Prometheus write

"Config Prometheus"

prometheus:                            
    image: prom/prometheus:latest
    container_name: prometheus
    networks:
      front:
        ipv4_address: 192.168.10.5          
    volumes:
      - Prometheus:/prometheus
    command:
      - --config.file=/prometheus/config.yml
      - --web.enable-remote-write-receiver
      - --storage.tsdb.retention.time=40d
    restart: always