docker-compose
docker-compose copied to clipboard
THIS REPOSITORY IS DEPRECIATED, PLEASE SEE MYBB/DOCKER INSTEAD!
The following snippet should be added to the `Dockerfile` to override the PHP defaults for uploaded files and script execution time. ``` RUN { \ echo 'file_uploads=On'; \ echo 'max_execution_time=20';...
Allows composer to be ran using `docker-compose run composer {command}` - eg: `docker-compose run composer update`
It should be documented that the logging configuration as follows only works for Linux based hosts: ```yaml logging: driver: syslog options: tag: "{{.DaemonName}}(image={{.ImageName}};name={{.Name}};id={{.ID}})" ``` On hosts such as macOS where...