From 25344706b0906cd3371e6e5d00e60aa8153f3cd7 Mon Sep 17 00:00:00 2001 From: Leonard Jonathan Oh Date: Wed, 28 Sep 2022 16:30:35 +0000 Subject: [PATCH] Docs: Add comments in docker-compose.example.yml --- docker-compose.example.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index fa4bb7a0..b3748b1e 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -42,7 +42,7 @@ services: nginx: image: leojonathanoh/asp:nginx volumes: - - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf:ro + - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf:ro # Override if needed ports: - 80:80 networks: @@ -75,8 +75,8 @@ services: # - MARIADB_PASSWORD=unused - MARIADB_DATABASE=bf2stats volumes: - - ./src/ASP/system/sql/schema.sql:/docker-entrypoint-initdb.d/01-schema.sql:ro # Seed the database on the first time. No need to use the dashboard installer. - - ./src/ASP/system/sql/data.sql:/docker-entrypoint-initdb.d/02-data.sql:ro # Seed the database on the first time. No need to use the dashboard installer. + - ./src/ASP/system/sql/schema.sql:/docker-entrypoint-initdb.d/01-schema.sql:ro # Seed the database on the first run. No need to use the dashboard installer. + - ./src/ASP/system/sql/data.sql:/docker-entrypoint-initdb.d/02-data.sql:ro # Seed the database on the first run. No need to use the dashboard installer. - db-volume:/var/lib/mysql networks: - default @@ -87,6 +87,7 @@ services: phpmyadmin: image: phpmyadmin:5.2-fpm-alpine environment: + # - PMA_ABSOLUTE_URI=https://phpmyadmin.example.com # Enable this if behind a reverse proxy - PMA_HOST=db ports: - 8080:80