forked from Chewbaka69/PlexShare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
37 lines (31 loc) · 941 Bytes
/
docker-compose.dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
# FOR the BASE_URL never forget the last /
# BASE_URL: http://your-domain.here/
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