Pete Halverson
Pete Halverson
I should mention I'm using this with a pretty old version of CodeIgniter (v1.7.3), maybe the ENVIRONMENT constant is defined as part of newer convention.
Thanks @TimFoerster, I've been wanting to address the cron process differently. I'll give this a try.
Hi @jonathandey! Try clearing your cache within the container by running `docker-compose exec october artisan cache:clear` After that, can you tell me what triggers the error? I've stumbled on permission...
Yes. I'll keep you posted.
Hi @arndt-s! Agreed. I think we should add some helpful HTTPS examples. By default, [`APP_ENV=docker`](https://github.com/aspendigital/docker-octobercms#app-environment) when a container is started. The [variables defined in `config/docker/cms.php`](https://github.com/aspendigital/docker-octobercms#october-cms-app-environment-config) will override those set in...
I am trying to avoid requiring a persistent `/vendor` volume for a variety of reasons. @jimcottrell, @LukeTowers pointed out the OC marketplace plugins add the [replace property](https://getcomposer.org/doc/04-schema.md#replace). I'm assuming that...
For some context, `composer install` runs during the [image build process](https://github.com/aspendigital/docker-octobercms/blob/master/Dockerfile.template#L49) and stores dependencies in the `/var/www/html/vendor` folder of the image. For [local development workflows](https://github.com/aspendigital/docker-octobercms#working-with-local-files), I assume volumes are mapped...
I should point out by detecting the presence of a composer file and whether or not a vendor folder exists in each plugin folder, we're able to elegantly support plugins...
@jacksun101 Yes, that makes sense. I've introduced SUPERVISOR in other images for other purposes (e.g. octodock), but hesitate to suggest it for a worker. I see the benefits of creating...
Can be resolved by passing the user flag on run or exec: - `docker run -it --user www-data aspendigital/octobercms bash` - `docker exec --user www-data octobercms bash php artisan plugin:install...