You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
847 B
35 lines
847 B
3 years ago
|
version: '3.2'
|
||
|
|
||
|
services:
|
||
|
plexshare:
|
||
|
# Image doc here: https://dockerfile.readthedocs.io/en/latest/content/DockerImages/dockerfiles/php-nginx.html
|
||
|
container_name: plexshare-dev
|
||
|
image: chewbaka69/plexshare-dev
|
||
|
build: .
|
||
|
working_dir: /app
|
||
|
ports:
|
||
|
- '80:80'
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
# NGINX
|
||
|
WEB_DOCUMENT_ROOT: /app/public
|
||
|
WEB_DOCUMENT_INDEX: index.php
|
||
|
|
||
|
# LOGS
|
||
|
LOG_STDOUT: ./var/log/plexshare.stdout.log
|
||
|
LOG_STDERR: ./var/log/plexshare.stderr.log
|
||
|
|
||
|
# PHP CONFIG
|
||
|
php.error_reporting: 1
|
||
|
PHP_DISPLAY_ERRORS: E_ALL
|
||
|
|
||
|
PHP_POST_MAX_SIZE: 20M
|
||
|
PHP_MEMORY_LIMIT: 521M
|
||
|
PHP_MAX_EXECUTION_TIME: 300
|
||
|
|
||
|
PHP_DATE_TIMEZONE: Europe/Paris
|
||
|
|
||
|
# COMPOSER
|
||
|
COMPOSER_VERSION: 1
|
||
|
volumes:
|
||
|
- .:/app
|