From 306463969680b18d44e99b90ef6e829dd3df96eb Mon Sep 17 00:00:00 2001 From: joshrandall8478 <joshrandall8478@gmail.com> Date: Tue, 22 Oct 2024 22:04:53 -0400 Subject: [PATCH] added comment to docker compose --- docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d7735ec..b91d038 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,9 +6,9 @@ services: dockerfile: ./gradingscript.dockerfile environment: ASSIGNMENT_TITLE: "Assignment Title" - SCORE_DEFAULT: 100 - LATE_PENALTY: 8 - GRACE_PERIOD: "5 Days" - DEFAULT_LABELS: '["Names", "Steps", "Extra Credit"]' - DEFAULT_POINTS: '[[10],[15,20],[0]]' - TEAM: 0 + SCORE_DEFAULT: 100 # What the assignment is scored out of + LATE_PENALTY: 8 # Late penalty + GRACE_PERIOD: "5 Days" # Given grace period for late penalty. This is just a place in string, can be whatever value + DEFAULT_LABELS: '["Names", "Steps", "Extra Credit"]' # labels for each array of steps + DEFAULT_POINTS: '[[10],[15,20],[0]]' # Array of ints for each label, runs for points + TEAM: 0 #1 if this is a team assignment, 0 if the assignment is solo -- GitLab