From 2ef2f1fa5f15150b2669ca1536881cdb2012baf1 Mon Sep 17 00:00:00 2001 From: Moonbase Date: Fri, 4 Sep 2026 13:17:08 -0700 Subject: [PATCH] Remove docker-compose.yml To Unify Management Enable Asset Server --- docker-compose.dcproj | 18 ------------------ docker-compose.yml | 33 --------------------------------- sodoff.sln | 8 +------- src/appsettings.json | 4 ++-- 4 files changed, 3 insertions(+), 60 deletions(-) delete mode 100644 docker-compose.dcproj delete mode 100644 docker-compose.yml diff --git a/docker-compose.dcproj b/docker-compose.dcproj deleted file mode 100644 index fc70a6e..0000000 --- a/docker-compose.dcproj +++ /dev/null @@ -1,18 +0,0 @@ - - - - 2.1 - Linux - 81dded9d-158b-e303-5f62-77a2896d2a5a - LaunchBrowser - {Scheme}://localhost:{ServicePort} - sodoff - - - - docker-compose.yml - - - - - \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 3833a82..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,33 +0,0 @@ -services: - sodoff: - container_name: sodoff-jsgr - image: ${DOCKER_REGISTRY-}sodoff - build: - context: . - dockerfile: src/Dockerfile - ports: - - 5040:5000 - networks: - - sodoff-backend - restart: unless-stopped - - db: - container_name: sodoff-jsgr-db - image: postgres:16.2-alpine - restart: unless-stopped - environment: - POSTGRES_USER: sodoff - POSTGRES_DB: sodoffdb - volumes: - - postgres_data:/var/lib/postgresql/data - ports: - - "5432:5432" - networks: - - sodoff-backend - -networks: - sodoff-backend: - external: true - -volumes: - postgres_data: diff --git a/sodoff.sln b/sodoff.sln index 24736a6..76702eb 100644 --- a/sodoff.sln +++ b/sodoff.sln @@ -1,12 +1,10 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 18 -VisualStudioVersion = 18.9.12120.119 stable +VisualStudioVersion = 18.9.12120.119 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sodoff", "src\sodoff.csproj", "{B0D39F12-DE8E-4289-82DD-C1F264CC280A}" EndProject -Project("{E53339B2-1760-4266-BCC7-CA923CBCF16C}") = "docker-compose", "docker-compose.dcproj", "{81DDED9D-158B-E303-5F62-77A2896D2A5A}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -17,10 +15,6 @@ Global {B0D39F12-DE8E-4289-82DD-C1F264CC280A}.Debug|Any CPU.Build.0 = Debug|Any CPU {B0D39F12-DE8E-4289-82DD-C1F264CC280A}.Release|Any CPU.ActiveCfg = Release|Any CPU {B0D39F12-DE8E-4289-82DD-C1F264CC280A}.Release|Any CPU.Build.0 = Release|Any CPU - {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {81DDED9D-158B-E303-5F62-77A2896D2A5A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/appsettings.json b/src/appsettings.json index 08f40a1..fb9d080 100644 --- a/src/appsettings.json +++ b/src/appsettings.json @@ -9,7 +9,7 @@ }, "AssetServer": { "// Enabled": "Set to false to disable the built-in asset server", - "Enabled": false, + "Enabled": true, "// ListenIP": "Listening IP address for the asset server, default is '*' which represents all IPv4 and IPv6 addresses", "ListenIP": "*", @@ -27,7 +27,7 @@ "UseAnyURLPrefix": true, "// Mode": "Two modes: full - everything is local, partial - downloads assets from ProviderURL if not found locally", - "Mode": "partial", + "Mode": "full", "// ProviderURL": "Proxy URL used in partial mode", "ProviderURL": "https://web.archive.org/web/20230713000000id_/https://media.jumpstart.com/",