User Tools

Site Tools


docker_options

This is an old revision of the document!


Docker Options

Docker makes it easy to jump in and have a perfect environment for working on Wizard's Toolkit. Plus, Docker facilitates scaling through Kubernetes and other methods. Wizard's Toolkit provides what we think is an ideal environment, but since this is low-code, you are welcome to change any aspects you want.

WTK Mysql Docker

The default Docker environment for Wizard's Toolkit contains:

  • Nginx - nginx:1.22.0-alpine (see `/nginx.conf` for details)
  • PHP - php:8.1-fpm (see `PHP.Dockerfile` for details)
    • PHP environment variables are set in `/phpMySQL.env`
  • MySQL - mysql:8.3
  • phpMyAdmin - You may want to remove this before deploying to production.

These settings are all defined in docker-compose.yml and to build, simply run in Terminal:

./WTK.sh

WTK PostgreSQL Docker

There is an alternative docker-composePG.yml file which contains the PostgreSQL version of Wizard's Toolkit. All the web pages are the same, but the database is PostgreSQL. This version is slightly out-of-date with the most recent enhancements of Wizard's Toolkit but should be updated before May 2025.

To run, rename the docker-compose.yml to docker-composeMySQL.yml then rename the docker-composePG.yml to docker-compose.yml. After that, build your Docker environment as normal or in Terminal simply run:

./WTK.sh

The docker-composePG.yml contains:

  • Nginx - nginx:1.22.0-alpine (see `/nginx.conf` for details)
  • PHP - php:8.1-fpm (see PHP.DockerfilePG for details)
    • PHP environment variables are set in /phpPG.env
  • PostgreSQL - bitnami/postgresql:latest

Python Docker

If you need your web server to also process Python, a Docker container has been provided which contains all the images in the core MySQL container, plus an image with Python and Gunicorn. The port is not made public and is only accessible by the PHP pages as an internal networking.

To use this, simply rename the docker-composePython.yml to docker-compose.yml. After that build your docker environment as normal or in Terminal simply run:

./STOP_CONTAINERS.sh
./WTK.sh

Demo pages have been provided as a prototype for connectivity between your WTK PHP pages and your Python file(s).

After creating an account to login, go to:

http://127.0.0.1/demo/python.php

Login then click the Python Test links. These pass a parameter to /demo/getPython.php then display the results on the web page. The getPython.php page only contains the following:

<?PHP
$pgSecurityLevel = 1;
define('_RootPATH', '../');
require('../wtk/wtkLogin.php');
 
$pgStep = wtkGetPost('step');
// modify calling method to pass as many parameters as you want, then pass those to your Python page
 
// wtk_python is your Docker Python image name
$pgPythonURL = "http://wtk_python:5000/?step=$pgStep";
$pgResponse  = file_get_contents($pgPythonURL);
 
echo $pgResponse;
exit;
?>

Python Code

The Python code is all in /python/app.py file. During Docker build, it is copied to an /app folder within the image which is not accessible to the public, but is accessible to the other images in your Docker `wizardstoolkit` container.

The associated files for the Python build are in the /python folder.

docker-compose.yml contains the following:

  • Nginx - nginx:1.22.0-alpine (see /nginx.conf for details)
  • PHP - php:8.1-fpm (see PHP.Dockerfile for details)
    • PHP environment variables are set in /phpMySQL.env
  • MySQL - mysql:8.3
  • phpMyAdmin - you may want to remove this before publishing to production
  • Python - python:3.11.4-alpine3.18 (see Python.Dockerfile for details which pulls files from /python)

Currently the app.py simply sends various responses depending what parameters are sent. This is just a working prototype that you can build from.

docker_options.1743728786.txt.gz · Last modified: 2025/04/04 01:06 by wtkadmin