Skip to content

Commit

Permalink
Requested end new line changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eze Rodriguez authored and ankitjain28may committed Oct 31, 2019
1 parent e64d9a0 commit 0d16112
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
**/Thumbs.db
.dockerignore
Dockerfile
docker-compose.yaml
docker-compose.yaml
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ DB_PORT=3306
DB_NAME=openchat
DB_USER=user
DB_PASSWORD=password
DB_ROOT_PASSWORD=secret
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- 33060:3306
environment:
# `secret` as password is used only in local development.
MYSQL_ROOT_PASSWORD: secret
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
# The application db user can't be named `root`.
MYSQL_USER: ${DB_USER} # Requires that `DB_USER` has been defined.
MYSQL_PASSWORD: ${DB_PASSWORD} # Requires that `DB_PASSWORD` has been defined.
Expand Down Expand Up @@ -54,4 +54,4 @@ services:
- 8080:8080
- 8888:8888
networks:
- openchat
- openchat
32 changes: 0 additions & 32 deletions docker/config/nginx/default.conf

This file was deleted.

2 changes: 1 addition & 1 deletion docker/config/php/php.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
upload_max_filesize = 10M
post_max_size = 10M
memory_limit = 128M
memory_limit = 128M
2 changes: 1 addition & 1 deletion docker/config/supervisor/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0

stderr_logfile=/dev/fd/2
stderr_logfile_maxbytes=0
stderr_logfile_maxbytes=0

0 comments on commit 0d16112

Please sign in to comment.