Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ public async Task<IActionResult> GetPlayerCounts()

return this.Ok(response);
}
}
}
8 changes: 7 additions & 1 deletion ProjectLighthouse/Types/Users/GameVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ public static class GameVersionHelper
"NPEA00437",
"BCES01693",
"BCKS10150",
"NPHA80113",
"NPHA80125",
"NPHA80132",
"NPHA80163",
"NPHA80161",
"NPHA80277",
//Debug, Beta and Demo
"NPUA70117",
"BCET70023",
Expand Down Expand Up @@ -206,4 +212,4 @@ private static Dictionary<string, GameVersion> createTitleMap()

public static GameVersion FromTitleId(string titleId)
=> titleIdMap.TryGetValue(titleId, out GameVersion parsedVersion) ? parsedVersion : GameVersion.Unknown;
}
}
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ volumes:
redis:
services:
gameserver:
image: lighthouse:latest
image: ghcr.io/lbpunion/projectlighthouse:main
container_name: gameserver
build: .
restart: unless-stopped
Expand All @@ -26,7 +26,7 @@ services:
- "./data:/lighthouse/data:z"
- "./data/.aspnet:/lighthouse/.aspnet:z"
website:
image: lighthouse:latest
image: ghcr.io/lbpunion/projectlighthouse:main
container_name: website
restart: unless-stopped
ports:
Expand All @@ -47,7 +47,7 @@ services:
- "./data:/lighthouse/data:z"
- "./data/.aspnet:/lighthouse/.aspnet:z"
api:
image: lighthouse:latest
image: ghcr.io/lbpunion/projectlighthouse:main
container_name: api
restart: unless-stopped
ports:
Expand Down Expand Up @@ -86,4 +86,4 @@ services:
container_name: redis
restart: unless-stopped
volumes:
- "redis:/var/lib/redis"
- "redis:/var/lib/redis"
Loading