You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ This is the server for automated updates of Joomla CMS instances running on joom
6
6
* Check out this repo
7
7
* Copy to .env.example to .env and adjust to your requirements - important: set UID and GID to user and group on the host system that you would like to use for the processes
8
8
* Start the webserver and DB services: `docker-compose -f docker-compose.prod.yml up -d`
9
-
* Apply the database migrations: `docker-compose run --entrypoint="php artisan migrate" php`
10
-
* Daemonize the queue worker, i.e. by using supervisord; the call in question is: `docker-compose run --entrypoint="php artisan horizon" php`
11
-
* Add a cron job to execute the task scheduler. The scheduler should be trigger every 5min, the call is: `docker-compose run --entrypoint="php artisan schedule:run" php`
9
+
* Apply the database migrations: `docker-compose run --entrypoint="php artisan migrate" php-fpm`
10
+
* Daemonize the queue worker, i.e. by using supervisord; the call in question is: `docker-compose run --entrypoint="php artisan horizon" php-fpm`
11
+
* Add a cron job to execute the task scheduler. The scheduler should be trigger every 5min, the call is: `docker-compose run --entrypoint="php artisan schedule:run" php-fpm`
12
12
13
13
## Periodic operations
14
14
The update server performs several operations automatically, if the the cron job is configured. Each operation is a artisan console job and can be manually performed if necessary.
@@ -21,7 +21,7 @@ The update server performs several operations automatically, if the the cron job
21
21
22
22
## Manual operations
23
23
The update server has multiple manual operations available that can be triggered via CLI. In order to do so, execute the respective command in the PHP container of the docker setup:
24
-
`docker-compose run --entrypoint="php artisan $COMMAND" php`
24
+
`docker-compose run --entrypoint="php artisan $COMMAND" php-fpm`
0 commit comments