User Tools

Site Tools


docker_options

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
docker_options [2025/04/04 01:13] – [Python Code] wtkadmindocker_options [2025/04/05 01:44] (current) – [WTK PostgreSQL Docker] updated wtkadmin
Line 21: Line 21:
 ===== WTK PostgreSQL Docker ===== ===== 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.+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 that, build your Docker environment as normal or in Terminal simply run:+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 by simply running in Terminal:
  
 <code> <code>
Line 36: Line 36:
   * **PostgreSQL** - bitnami/postgresql:latest   * **PostgreSQL** - bitnami/postgresql:latest
  
-===== WTK 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 exposed to the public and is only accessible by the PHP pages via 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.
 +
 +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 that, build your Docker environment as normal or in Terminal simply run: 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:
Line 73: Line 82:
 </code> </code>
  
-==== WTK MySQL and Python Code ====+==== Python Code Location ====
  
 The Python code is all in the **/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 Python code is all in the **/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. The associated files for the Python build are in the `/python` folder.
- 
-The `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 on what parameters are sent. This is just a working prototype that you can build from. Currently, the `app.py` simply sends various responses depending on what parameters are sent. This is just a working prototype that you can build from.
docker_options.1743729185.txt.gz · Last modified: 2025/04/04 01:13 by wtkadmin