EspoCRM on Docker Hub and Helm Charts

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • brianpunzalan
    Active Community Member
    • Aug 2017
    • 62

    EspoCRM on Docker Hub and Helm Charts

    Hi,

    It seems it would be great if Espo could span its presence on containerization. What are your thoughts on including EspoCRM in Docker hub and Helm Charts? Other CRM platforms have already done the same.

    Regards,
    Brian
  • esforim
    Active Community Member
    • Jan 2020
    • 2204

    #2
    The more expose EspoCRM is, the better. But it might require you to start the ball rolling.

    Comment

    • tarasm
      Super Moderator
      • Mar 2014
      • 573

      #3
      We are in process of adding EspoCRM to Official Images of Docker. Currently, the build repository is available here: https://github.com/espocrm/espocrm-docker/
      Job Offers and Requests

      Comment

      • esforim
        Active Community Member
        • Jan 2020
        • 2204

        #4
        There you go. This project was already started last year in December 2019

        Comment

        • nicko
          Junior Member
          • Apr 2020
          • 29

          #5
          Hello, I'm using the GitHub docker to build instances but I want to be able to customise the language, currency etc on build. Does anyone know where to set these on build, and what syntax to use for the variable names and their values?

          Comment

          • Maximus
            Senior Member
            • Nov 2018
            • 2731

            #6
            Hi nicko,

            > I want to be able to customise the language, currency etc on build
            What actually you want to customize. Some customization is available to do via Administration ->Label Manager, Administration -> Currency. Also, you can customize via files (e.g. /custom/Espo/Custom/Resources/i18n/es_ES/Account.json).
            Read this about currency https://github.com/espocrm/documenta...ssing-currency.

            > what syntax to use for the variable names and their values
            Could you explicit it please. Variables should be defined in accordance with a language (e.g. php, javascript, etc.).

            Comment

            • nicko
              Junior Member
              • Apr 2020
              • 29

              #7
              Hi Maximus Thanks for the reply, i resolved this as I found I could do this from the .yml file I used to build the container. The following variables worked and get passed to the docker-entrypoint.sh file successfully:

              ESPOCRM_LANGUAGE: en_GB
              ESPOCRM_DATE_FORMAT: "DD/MM/YYYY"
              ESPOCRM_TIME_FORMAT: "hh:mm a"
              ESPOCRM_TIME_ZONE: "Europe/London"
              ESPOCRM_WEEK_START: 1
              ESPOCRM_DEFAULT_CURRENCY: GBP

              Looking in the docker-entrypoint.sh script I can see there are other variables supported.

              Comment

              Working...