/axelor-docker

Docker files for Axelor.

Primary LanguageDockerfile

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