From 65e63431a3971568d9824263600900386a9f0443 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 26 Mar 2025 12:26:37 -0700
Subject: [PATCH 1/3] docker: use staging auth image

---
 compose.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compose.yaml b/compose.yaml
index 1419a1f..8e6127b 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -93,7 +93,7 @@ services:
       - maps-service-network
 
   authrpc:
-    image: registry.itzana.me/strafesnet/auth-service:master
+    image: registry.itzana.me/strafesnet/auth-service:staging
     container_name: authrpc
     command: ["serve", "rpc"]
     environment:
@@ -108,7 +108,7 @@ services:
       driver: "none"
 
   auth-web:
-    image: registry.itzana.me/strafesnet/auth-service:master
+    image: registry.itzana.me/strafesnet/auth-service:staging
     command: ["serve", "web"]
     environment:
       - REDIS_ADDR=authredis:6379
-- 
2.47.1


From bf6c8af21abb75d2b31a00f7a5fba170f7d4d242 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 26 Mar 2025 12:34:27 -0700
Subject: [PATCH 2/3] docker: add group id env var

---
 compose.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/compose.yaml b/compose.yaml
index 8e6127b..3df0c93 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -98,6 +98,7 @@ services:
     command: ["serve", "rpc"]
     environment:
       - REDIS_ADDR=authredis:6379
+      - RBX_GROUP_ID=17032139
     env_file:
       - ../auth-compose/auth-service.env
     depends_on:
-- 
2.47.1


From 5ae287f3f2fc406e5edb2ae140a2175d8bb3a37d Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 26 Mar 2025 12:46:33 -0700
Subject: [PATCH 3/3] docker: fix API_HOST

---
 compose.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compose.yaml b/compose.yaml
index 3df0c93..1648e5a 100644
--- a/compose.yaml
+++ b/compose.yaml
@@ -49,7 +49,7 @@ services:
     ports:
       - "3000:3000"
     environment:
-      - API_HOST=http://submissions:8082
+      - API_HOST=http://submissions:8082/v1
 
   validation:
     image:
-- 
2.47.1