/docker-ojs-dev

Docker-contained Open Journal Systems for plugin development

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

Docker OJS dev

A docker container for Open Journal Systems for developing plugin and themes.

Creates an OJS installation, persists the OJS database and files and opens OJS's plugin folder to the host. PHPMyAdmin is installed too. Currently runs:

  • Open Journal Systems 3.3.0-11
  • Alpine Linux 3.15, PHP 7.4, MariaDB 10.5, PHPMyAdmin 5.2.0

Meant for local development only. Largely based on PKP's docker-ojs.

Copyright (2022) Julien Dutant, GPL3 license.

Basic usage

Run OJS

Install Docker. Clone this repository (e.g. download and unzip) and execute the following in a terminal at the root of the repository:

docker-compose up -d

The first run might take some time (downloading and creating container images). If all goes well a local web server is set up with the following addresses:

  • http://localhost:8081 Open Journal Systems
  • https://localhost:8481 Open Journal Systems
  • http://localhost:8082 PHPMyAdmin
  • http:s//localhost:8482 PHPMyAdmin

Open a browser and navigate to localhost:8081. This will open the OJS install page. You MUST use the following settings:

  • Upload directory: /var/www/files
  • Database driver: MySQLi
  • host: db
  • username: ojs
  • password: ojs
  • database name: ojs

Fill in the rest as you wish and install OJS. You can create a journal, publish articles.

To download plugins, you have to make the /volumes/plugins folder of the repository writable by the docker-contained application. See below.

Once you are done, return to the terminal and use:

docker-compose down

To stop the container. You can recreate the container with docker-compose up -d: the website is preserved (accounts, journals, articles, files, plugins and their settings). Shut it again with docker-compose down.

Cleanup

If you want to erase your user data and start with a fresh install, use the cleanup script:

./tools/cleanup.sh

This will ask you separately whether to erase user data (accounts, journals, articles etc.) and whether to erase any custom OJS plugins you've added or developed.

Make sure the container is down first (docker-compose down).

NOTE: the script assumes the file volumes/config/ojs.config.TEMPLATE.inc.php is present. Do not delete it. If needed, recreate it: it's the config.TEMPLATE.inc.php file of the OJS version you use.

PHPMyAdmin

Inspect the database with PHPMyAdmin: browse to localhost:8082.

Folders

The volumes folder gives you access to several of the website folders:

  • volumes/logs/apache: apache (server) logs
  • volumes/logs/mysql: database log
  • volumes/private: OJS's uploaded files (/var/www/files/ in the app_ojs-dev container)
  • volumes/public: OJS's public folder (/var/www/public/ in the app_ojs-dev container)
  • volumes/plugins: OJS's plugins folder. Initially contains only links to the core plugins which you can't open from outside the container. Used to download plugins or develop your own (see below).
  • volumes/database: the database files. Don't touch them; use PHPMyAdmin instead.

You can also inspect and change OJS's config file:

  • volumes/config/ojs.config.inc.php: OJS's configuration file (config.inc.php)

Terminal

Docker runs the OJS server, database, PHPMyAdmin in isolated Linux systems ("containers"). You may want to run a terminal on those systems to explore their files and folders. To do so you can either use the Docker Desktop app (Containers > ojs-dev stack > app-ojs-dev > Actions > Open in Terminal for the OJS server) or run the following at the command line:

docker exec -it app_ojs-dev /bin/sh

The database server is db_ojs-dev and the PHPMyAdmin server is PHPMyAdmin_ojs-dev. If you have changed the default container names adapt accordingly.

The command line above assumes the container runs Alpine Linux. Others may work with /bin/bash instead. If in doubt,

Installing plugins

From the web interface

Make the folder volumes/plugins writable by all:

chmod -R a+rwx plugins 

Browse to the application. You can now download and install plugins. After installation, they are available outside of the container in volumes/plugins. You can modify them for development.

You can also download or create your own plugins. Place them within the volumes/plugins subfolders.

Tutorial

Suppose you want to create a custom OJS theme. Let's say you want to modify PKP's Classic.

First make sure your container is down (docker-compose down). Download the Classic theme source code and place it in this repository at volumes/plugins/themes/classic. (You will probably ) Launch the OJS website with docker-compose up -d. Browse to localhost:8081. Install OJS and create a journal if needed. Enter the journal apparence settings and the 'Classic' theme should now be available. You can then modify the code in volumes/plugins/themes/classic and test the results in your browser.

Details

Any plugin placed in the volumes/plugins subfolder will be accessible to OJS. Note that the plugins should be placed in subfolders by category:

  • volumes/plugins/importexport for import-export plugins
  • volumes/plugins/themes for theme plugins
  • etc.

To install a plugin you only need to copy its folder here, OJS will load it automatically.

This Docker container uses symbolic links to provide the default OJS plugins. Fill free to delete them and replace them with your own versions of the default OJS plugins.

How this works: the OJS container (default name app_ojs-dev) contains a copy of the default plugins (at /var/www/html/plugins-backup). When you run docker-compose up, the startup script scans your volume/plugins folder and creates symbolic links to any plugin present in plugins-backup but missing in your folder. Thus OJS finds the default plugin at its expected place. If you remove the link and

Note. If you remove a symbolic link for a category folder in order to install your custom plugin, you should restart the container (or launch the script /usr/local/bin/ojs-provide-core-plugins within the container).

To illustrate, suppose you've launched the container and there's an automatically-generated importexport symbolic link in the volumes/plugins folder. You want to install a new import-export plugin, so you delete the link, create a importexport folder instead, and place your plugin within it. However, your OJS container was still running! If you browse to OJS now, your plugin will be visible, but all the other import-export plugins will appear lost. To fix this, simply restart the container (docker-compose restart). The startup script will then fill in your new importexport folder with symbolic links to the other importexport folders. Or better, simply stop your container when you're installing a new plugin.

Advanced configuration

ojs.config.inc.php contains OJS's configuration file (config.inc.php).

The .env and docker-compose.yml contain most of the configuration: container names, MySQL root password, username and password, ports, shared volumes. If you modify them you need to restart the container (docker-compose restart).

In volumes/config you can create some configuration files. You need to uncomment the corresponding lines in docker-compose.yml and relauch the containers:

  • apache.htaccess: a .htaccess file (\var\www\html\.htaccess within the container)
  • php.custom.ini: a php.custom.ini file (/etc/php7/php.custom.ini within the container)
  • db.charset.conf: a mysql charset conf file (/etc/mysql/conf.d/charset.cnf within the container)

The services/php74 folder is used to create the OJS server. Its root subfolder is copied at the / within the container. In particular:

  • usr/local/bin/ contains scripts to run the server:
    • ojs-start is ran when you start the container. It itself runs ojs-pre-start which runs ojs-provide-core-plugins in turn.
    • ojs-pre-start sets up the apache server
    • ojs-provide-core-plugins ensures that volumes/plugins contains symbolic links for any missing core OJS plugins (links are to volumes/plugins-backup within the container)
    • other scripts are from PKP's docker-ojs](https://github.com/pkp/docker-ojs)
  • etc/apache2/conf.d/ojs.conf contains the apache configuration.

If you modify anything in services/php74 you need to rebuild the docker image used by the container: run docker-compose build at the root of the directory. Make sure the container is down first.

Troubleshooting

First OJS login requires an internet connection

Right after OJS is installed, you are sent to the login page. If you don't have an internet connection, you'll only get a blank page. The apache log will display the following PHP error:

[php7:error] [pid 59] [client 172.20.0.1:62212] PHP Fatal error:  Uncaught GuzzleHttp\\Exception\\ConnectException: cURL error 6: Could not resolve host: pkp.sfu.ca (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) in /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php:200\nStack trace:\n#0 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php(155): GuzzleHttp\\Handler\\CurlFactory::createRejection()\n#1 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php(105): GuzzleHttp\\Handler\\CurlFactory::finishError()\n#2 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php(43): GuzzleHttp\\Handler\\CurlFactory::finish()\n#3 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php(28): GuzzleHttp\\Handler\\CurlHandler->__invoke()\n#4 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php(51): GuzzleHttp\\Handler\\Proxy::GuzzleHttp\\Handler\\{closure}()\n#5 /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php(37): GuzzleHttp\\Handler\\P in /var/www/html/lib/pkp/lib/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php on line 200, referer: http://localhost:8081/index.php/index/login

Solution. You need an active internet collection on your first login.

Credits

Largely based on PKP's docker-ojs, with some inspiration from docker-compose-lamp.