User Tools

Site Tools


docker_options

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docker_options [2025/04/04 00:56] – created wtkadmindocker_options [2025/04/05 01:44] (current) – [WTK PostgreSQL Docker] updated wtkadmin
Line 1: Line 1:
 ====== Docker Options ====== ====== Docker Options ======
  
-Docker makes it easy to jump in and have a perfect environment for working on Wizard's Toolkit.  Plus Docker makes it easy to scale 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.+Docker makes it easy to jump in and have a perfect environment for working on Wizard's Toolkit. PlusDocker facilitates scaling through Kubernetes and other methods. Wizard's Toolkit provides what we think is an ideal environment, but since this is low-codeyou are welcome to change any aspects you want.
  
-The default Docker environment for Wizard's Toolkit contains:+===== WTK Mysql Docker =====
  
-  * Nginx - nginx:1.22.0-alpine (see /nginx.conf for details) +The default Docker environment for Wizard's Toolkit as defined in **docker-compose.yml** contains: 
-  * PHP - php:8.1-fpm (see PHP.Dockerfile for details) + 
-    * PHP environment variables are set in /phpMySQL.env+  * Nginx - nginx:1.22.0-alpine (see `/nginx.conffor details) 
 +  * PHP - php:8.1-fpm (see `PHP.Dockerfilefor details) 
 +    * PHP environment variables are set in `/phpMySQL.env`
   * **MySQL** - mysql:8.3   * **MySQL** - mysql:8.3
-  * phpMyAdmin - you may want to remove this before publishing to production+  * phpMyAdmin - You may want to remove this before deploying to production.
  
-These settings are all defined in **docker-compose.yml**.+To build, simply run in Terminal:
  
-===== PostgreSQL Docker =====+<code Terminal> 
 +./WTK.sh 
 +</code>
  
-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 is slightly out-of-date with the most recent enhancements of Wizard's Toolkit but should be updated before May 2025.+===== WTK PostgreSQL Docker =====
  
-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:+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. 
 + 
 +To run, rename the  **docker-compose.yml** to **docker-composeMySQL.yml** then rename the **docker-composePG.yml** to **docker-compose.yml**. After thatbuild your Docker environment by simply running in Terminal:
  
 <code> <code>
Line 23: Line 29:
 </code> </code>
  
-  * Nginx - nginx:1.22.0-alpine (see /nginx.conf for details)+The docker-composePG.yml contains: 
 + 
 +  * Nginx - nginx:1.22.0-alpine (see `/nginx.conffor details)
   * PHP - php:8.1-fpm (see **PHP.DockerfilePG** for details)   * PHP - php:8.1-fpm (see **PHP.DockerfilePG** for details)
     * PHP environment variables are set in **/phpPG.env**     * PHP environment variables are set in **/phpPG.env**
   * **PostgreSQL** - bitnami/postgresql:latest   * **PostgreSQL** - bitnami/postgresql:latest
  
-===== Python Docker =====+===== WTK MySQL and Python Code =====
  
-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.+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 exposed to the public and is only accessible by the PHP pages via 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:+The **docker-composePython.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) 
 + 
 +To use this, simply rename the **docker-composePython.yml** to **docker-compose.yml**. After thatbuild your Docker environment as normal or in Terminal simply run:
  
 <code> <code>
Line 41: Line 58:
 Demo pages have been provided as a prototype for connectivity between your WTK PHP pages and your Python file(s). 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:+After creating an account to log in, go to:
  
 http://127.0.0.1/demo/python.php 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:+Log in, then click the **Python Test** links. These pass a parameter to **/demo/getPython.php** and display the results on the web page. The getPython.php page only contains the following:
  
 <code php> <code php>
Line 65: Line 82:
 </code> </code>
  
-==== Python Code ====+==== Python Code Location ====
  
-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 publicbut is accessible to the other images in your Docker `wizardstoolkit` container.+The Python code is all in the **/python/app.py** file. During Docker build, it is copied to an `/appfolder within the imagewhich 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. +The associated files for the Python build are in the `/pythonfolder.
- +
-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.+Currentlythe `app.pysimply sends various responses depending on what parameters are sent. This is just a working prototype that you can build from.
docker_options.1743728199.txt.gz · Last modified: 2025/04/04 00:56 by wtkadmin