DVL-004 Use named volumes for container-only shared data (like sockets)

This commit is contained in:
cytopia 2017-04-20 17:47:27 +02:00
parent edf788f6dd
commit f400c5b280
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2
2 changed files with 19 additions and 11 deletions

View File

@ -376,9 +376,6 @@
<td>./etc</td>
</tr>
<tr>
<th>MySQL socket</th>
<td>./run/mysql/mysqld.sock</td>
</tr> <tr>
<th>Log directory</th>
<td>./log</td>
</tr>
@ -403,10 +400,6 @@
<th>MySQL datadir</th>
<td><?php echo $Docker->getEnv('HOST_PATH_TO_MYSQL_DATADIR');?></td>
</tr>
<tr>
<th>MySQL socket</th>
<td>./run/mysql/mysqld.sock</td>
</tr>
<tr>
<th>Log directory</th>
<td>./log</td>

View File

@ -179,10 +179,10 @@ services:
- ${DEVILBOX_PATH}/log/${PHP_SERVER}:/var/log/php-fpm
# Mount MySQL Socket directory
- ${DEVILBOX_PATH}/run/mysql:/tmp/mysql
- mysql_socket_volume:/tmp/mysql
# Mount Mail directory
- ${DEVILBOX_PATH}/run/mail:/var/mail
#- ${DEVILBOX_PATH}/run/mail:/var/mail
# Mount devilbox user-defined *.ini files in order
# to overwrite the default PHP configuration
@ -241,7 +241,7 @@ services:
- ${DEVILBOX_PATH}/log/${MYSQL_SERVER}:/var/log/mysql
# Mount MySQL Socket directory
- ${DEVILBOX_PATH}/run/mysql:/tmp/mysql
- mysql_socket_volume:/tmp/mysql
# Mount devilbox user-defined cnf files in order
# to overwrite the MySQL server configuration
@ -284,12 +284,27 @@ services:
- ${DEVILBOX_PATH}/log/postgres-${POSTGRES_SERVER}:/var/log/postgresql
# Mount PostgreSQL Socket directory
- ${DEVILBOX_PATH}/run/postgres:/var/run/postgresql
- pgsql_socket_volume:/var/run/postgresql
# Mount PostgreSQL Data directory
- ${HOST_PATH_TO_POSTGRES_DATADIR}:/var/lib/postgresql/data/pgdata
################################################################################
# VOLUMES
################################################################################
volumes:
# Create volume for mysql socket.
# This removes the need to mount the socket to the host
# but be able to mount it to different containers (from another container)
mysql_socket_volume:
# Create volume for postgresql socket.
# This removes the need to mount the socket to the host
# but be able to mount it to different containers (from another container)
pgsql_socket_volume:
################################################################################
# NETWORK
################################################################################