Axelor Docker#
Axelor Open Suite reduces the complexity and improve responsiveness of business processes. Thanks to its modularity, you can start with few features and then activate other modules when needed.
Demo#
Docker#
docker run -d --name axelor -p 8080:80 axelor/aio-erp
User: admin / admin
Other Options#
The docker image exposes following ports:
80
- nginx http port443
- nginx https port8080
- tomcat http port5432
- postgresql port
The docker image exposes following volumes:
/var/lib/tomcat
- tomcat base directory/var/lib/postgresql
- postgresql data directory/var/log/tomcat
- tomcat log files/var/log/postgresql
- postgresql log files
Following environment variables can be used to change container settings:
NGINX_HOST
- the public host name (default: localhost)NGINX_PORT
- the public port (default: 443)POSTGRES_USER
- the postgresql user name (default: axelor)POSTGRES_PASSWORD
- the postgresql user password (default: axelor)POSTGRES_DB
- the postgresql database name (default: axelor)