<All Topics
Print

docker-compose.yml para Botpress

Below is a docker-compose recipe that we use to easily upload a Botpress:

version: '3.5'

services:      
  botpress:
    image: botpress/server:v12_25_0
    volumes:
      - botpress-data:/botpress/data
    environment:
      - BP_CONFIG_HTTPSERVER_HOST=0.0.0.0
      - BP_MODULE_NLU_DUCKLINGURL=https://duckling.botpress.io/
      - EXTERNAL_URL=http://ENDERECO_EXTERNO_DO_BOTPRESS:3000/
    ports:
       - 3001:3000
    networks:
      - web
      - rocketchat
    healthcheck:
      disable: true

volumes:
  botpress-data:
    driver: local
      
networks:
  web:
    external: 
      name: web
  rocketchat:
    external:
      name: rocketchat_default

Some remarks about the recipe above:

  1. Adjust the version with the latest TAG. You can check out the current list on this link🙂
  2. Set the external address of your BOTPRESS (if you want to access it externally)
  3. Reference the network of your standalone docker or Rocket.Chat docker swam, to facilitate Botpress integration with Rocket.Chat via LigeroSmart-Botpress App.

Leave a Reply

Your email address will not be published. Required fields are marked *

summary