Skip to content

ProcessMaker/pm4core-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProcessMaker 4 Core Docker Instance

This docker-compose setup allows you to quickly start up an instance of ProcessMaker4 Core to test with.

This build has no enterprise packages.

Requirements

Running an instance

  1. Clone or download this repo

  2. Modify the .env file (optional)

    Variable Description
    PM_VERSION The version to install from dockerhub. Must match one of the tags at https://hub.docker.com/r/processmaker/pm4-core/tags or build it locally
    PM_APP_URL The base URL that's accessible from outside the container. This will usually be http:https://localhost but you can change it if you customize your hosts file and add extra_hosts to the docker-compose.yml
    PM_APP_PORT Choose a different port if 8080 is in use on your host
    PM_BROADCASTER_PORT Choose a different port for the Socket.io server if 6001 is in use on your host
    PM_DOCKER_SOCK Location of your docker socket file. See note
  3. Run docker-compose up

    This will pull the image if it doesn't exist. It's >2 gigabytes so it could take some time.

    If this is the first time running, it will run the install script and seed the database. This part usually takes a few minutes but if script executor images need to be downloaded and built it will take a few extra minutes.

    The instance should now be available at http:https://localhost:8080 (or where ever you configured it in the .env file)

    Username: admin Password: admin123

    ctrl+c will gracefully stop all containers but will not remove them so changes will persist.

    If you need a clean environment or made changes to config files, you can reinstall with

    docker-compose down -v
    docker-compose up
    

Building the application image locally

If you want to build your own version locally, run docker build with PM_VERSION set to a tag at https://github.com/ProcessMaker/processmaker/tags (without the leading 'v')

docker build --build-arg PM_VERSION=4.1.21-RC7 -t processmaker/pm4-core:local .

Then change PM_VERSION in .env to local

Building the base image locally

The pm4-base image includes all the prerequisites for PM4. It's available at https://hub.docker.com/r/processmaker/pm4-base

If you need to modify it you can edit Dockerfile.base and build it yourself with

docker build -t pm4-base:local -f Dockerfile.base .

After building the base image, change FROM at the top of the Dockerfile and rebuild the application image the above instructions

Bind-mounting the docker socket

The instance uses the host's docker server by bind-mounting your docker sock file. This allows for smaller images and better performance than using dind (docker in docker). See this post for more info. The host socket file is usually at /var/run/docker.sock but can be changed in the .env file

Todo

Automated builds pushed to dockerhub

Currently, the image must be built and pushed to dockerhub manually using the instructions above when a new tag of PM4 is released.

The goal is to have CircleCI do this automatically

Use production build

Currently the image is built using development as the target (e.g. npm run dev). Building for production for Node and Composer packages should greatly reduce the image size and might increase performance.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages