From 4f12a4d6c31c99eb14d946f5f92833c7e26343ec Mon Sep 17 00:00:00 2001 From: Peyton Johnson Date: Thu, 29 Aug 2024 15:50:11 -0400 Subject: [PATCH] Updated docker-compose file to add comment addressing usage of sql files for C1T --- configuration/docker-compose.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/configuration/docker-compose.yml b/configuration/docker-compose.yml index f96bddbfd..be01ea0b9 100755 --- a/configuration/docker-compose.yml +++ b/configuration/docker-compose.yml @@ -14,9 +14,14 @@ services: - mysql_root_password volumes: - ./mysql/localhost.sql:/docker-entrypoint-initdb.d/localhost.sql - - ./mysql/garage_port_drayage/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql - - ./mysql/garage_port_drayage/port_drayage_lane1.sql:/docker-entrypoint-initdb.d/port_drayage_lane1.sql - - ./mysql/garage_port_drayage/port_drayage_lane2.sql:/docker-entrypoint-initdb.d/port_drayage_lane2.sql + - ./mysql/localhost.sql:/docker-entrypoint-initdb.d/port_drayage.sql + # The following 3 volumes are used for C1T. By default the standard "port_drayage.sql" file + # will be loaded. Comment out the "port_drayage.sql" file above and uncomment the following + # three files to enable the C1T sql files to be loaded. The container volumes MUST be reset + # to allow for this change, which can be done with "docker compose down -v" + #- ./mysql/garage_port_drayage/port_drayage.sql:/docker-entrypoint-initdb.d/port_drayage.sql + #- ./mysql/garage_port_drayage/port_drayage_lane1.sql:/docker-entrypoint-initdb.d/port_drayage_lane1.sql + #- ./mysql/garage_port_drayage/port_drayage_lane2.sql:/docker-entrypoint-initdb.d/port_drayage_lane2.sql - mysql-datavolume:/var/lib/mysql php: