Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 767 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 767 Bytes

Axelor Dockerfiles

This repository provides Dockerfiles and samples to build Docker images for Axelor apps.

Build Images

It assumes you have Docker installed on your system.

Build base image

$ cd aio-base
$ docker build -t axelor/aio-base .

Build builder image

$ cd aio-builder
$ docker build -t axelor/aio-builder .

Build app image

$ cd aio-erp
$ docker build -t axelor/aio-erp .

Run app container

Once app image is built, you can run it like this:

$ docker run -it -p 8080:80 axelor/aio-erp

Once app completes database initialization, it can be access at: http://localhost:8080