Git Product home page Git Product logo

open-suite-docker's Introduction

Axelor Web Docker

Dockerfile and docker-compose.yml to build and deploy Axelor Open Suite.

Table of contents

Docker

This image will retrieve the sources of the open-suite-webapp and the axelor-open-suites module and build the war while setting the application properties from build arguments.

The different build arguments are:

  • AXELOR_VERSION: define the desired axelor-open-suite version (default 5.4.11)
  • AXELOR_DB_USER: define the username of the database (default axelor)
  • AXELOR_DB_PASSWORD: define the password of the database (default changeme)
  • AXELOR_DB_URL: defines the access url to the database (default jdbc:postgresql:\/\/localhost:5432\/axelor-open-suite)

Notice the \/ in the definition of the database url.

To build the image with default values:

$ docker build -t axelor-erp .

To build the image with a different version (like 6.1.4):

$ docker build -t axelor-erp --build-arg AXELOR_VERSION=6.1.4 .

You can easily build different versions of the image on different tags like:

$ docker build -t axelor-erp:6.1.4 --build-arg AXELOR_VERSION=6.1.4 . # should build axelor-erp:6.1.4 image
$ docker build -t axelor-erp:6.0.17 --build-arg AXELOR_VERSION=6.0.17 . # should build axelor-erp:6.0.17 image
...

Once your image has been successfully built and you have a database available with the same arguments as the build, you can run the image:

$ docker run -d --name axelor-erp -p 8080:8080 axelor-erp

You can access on http://localhost:8080.

docker-compose

To build and deploy the ERP with PostgresSQL, you can use the docker-compose.yml file provided.

$ docker-compose up -d

You can access on http://localhost:8080.

To configure the different services, you can modify the .env file.

open-suite-docker's People

Contributors

fsc-axelor avatar mch-axelor avatar

Stargazers

 avatar

Watchers

 avatar

open-suite-docker's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.