Docker container
Basic installation
Use one of the following command to bring the frePPLe image to your local docker repository:
# Community Edition
docker pull ghcr.io/frepple/frepple-community:latest
# Enterprise Edition: enter github token to login
docker login ghcr.io --username <github_user>
docker pull ghcr.io/frepple/frepple-enterprise:latest
The image can be extended and customized using the following:
The container exposes port 80 for HTTP access.
The following environment variables configure the access to the PostgreSQL database:
- POSTGRES_HOST:Required. Points to IP address or name of the host running the database.
- POSTGRES_PORT:TCP port of the database. Defaults to “5432”.
- POSTGRES_USER:Database role or user. Defaults to “frepple”.
- POSTGRES_PASSWORD:Password for the database role or user. Defaults to “frepple”.
- POSTGRES_DBNAME:Prefix to use for the database name.The default database names are “frepple”, “scenario1”, “scenario2”, “scenario3”.If this argument is passed as “X”, the database names will be “X0”, “X1”, “X2” and “X3”.
The following volumes let you access all logs, configuration and license files:
- /etc/frepple:Contains the main configuration file djangosettings.py and the license file license.xml (for the Enterprise Edition).
- /var/log/frepple:Contains log files of the application.
- /var/log/apache2:Log files of the web server.
The entry point of the container can be customized by placing files in the folder /etc/frepple/entrypoint.d
Custom code can be added to the container by inheriting from this image. A section below illustrates how this is done.
Deployment with external PostgreSQL database
The example below creates a container that is using the PostgreSQL database installed on the Docker host server. The container is called frepple-community-local, and you can access it with your browser on the URL http://localhost:9000/
docker run \
-e POSTGRES_HOST=host.docker.internal \
-e POSTGRES_PORT=5432 \
-e POSTGRES_USER=frepple \
-e POSTGRES_PASSWORD=frepple \
-e POSTGRES_DBNAME=freppledb \
--name frepple-community-local \
--publish 9000:80 \
--detach \
ghcr.io/frepple/frepple-community:latest
Deployment with docker compose
Here is a sample docker-compose file that defines 2 containers: 1) a postgres container to run the database and 2) a frepple web application server.
You access the application with your browser on the URL http://localhost:9000/
The frepple log and configuration files are put in volumes (which allows to reuse them between different releases of the frepple image).
Note that the postgres database container comes with default settings. For production use you should update the configuration with the pgtune recommendations from https://pgtune.leopard.in.ua/ (use “data warehouse” as application type and also assure the max_connections setting is moved from the default 100 to eg 400).
services:
frepple:
image: "frepple-community:latest"
container_name: frepple-community-webserver
ports:
- 9000:80
depends_on:
- frepple-community-postgres
networks:
- backend
volumes:
- log-apache-community:/var/log/apache2
- log-frepple-community:/var/log/frepple
- config-frepple-community:/etc/frepple
environment:
POSTGRES_HOST: frepple-community-postgres
POSTGRES_PORT: 5432
POSTGRES_USER: frepple
POSTGRES_PASSWORD: freppledb
frepple-community-postgres:
image: "postgres:13"
container_name: frepple-community-postgres
networks:
- backend
environment:
POSTGRES_PASSWORD: frepple
POSTGRES_DB: frepple
POSTGRES_USER: frepple
POSTGRES_DBNAME: frepple
volumes:
log-apache-community:
log-frepple-community:
config-frepple-community:
networks:
backend:
Another option is fork this git repository https://github.com/ursais/frepple-template (maintained by https://www.opensourceintegrators.com/) as a starting point for your own wrapper. This repository is also suited for the frepple Enterprise Edition, and it already accounts for any custom frepple addons.
Deployment with Kubernetes
A set of Kubernetes configuration files is available on https://github.com/frePPLe/frepple/tree/master/contrib/kubernetes
Create a copy of these files on your machine. Then run the following commands to deploy frepple.
kubectl apply -f frepple-deployment.yaml,frepple-postgres-deployment.yaml,frepple-networkpolicy.yaml
The following resources are then defined in your cluster:
A frepple service that runs the frepple planning engine and an Apache web server. It exposes port 80 for HTTP access to the application.
A postgresql service to store the frepple data.
Persistent volumes to store the web server logs (50MB), the application logs (100MB) and the postgresql data (1GB).
A network policy to keep the connection between frepple and its postgres database private.
Deployment with custom extension apps
Extending the container with your customizations is simple by inheriting from the frePPLe image. Here is a an example dockerfile that adds a new frePPLe app (coded as a Python package):
FROM ghcr.io/frepple/frepple-enterprise:latest
COPY my-requirements.txt /
COPY my-python-package /
# Add the license key for the Enterprise Edition to the container
COPY license.xml /etc/frepple
# Install python dependencies and package
RUN python3 -m pip install -r my-requirements.txt && \
python3 my-python-package/setup.py install
# Update the djangosettings.py configuration file with extra settings
RUN echo "MYAPPSETTING=True" >> /etc/frepple/djangosettings.py
Running frepplectl commands on a container
It is possible to execute a frepplectl command (or any linux command) on a running container.
docker exec -it <container name> frepplectl importfromfolder
docker exec -it <container name> /bin/bash