-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
77 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
version: '3.4' | ||
|
||
# This compose file is compatible with existing Remotely containers prior to 2024. | ||
# In this file, the data volume is mapped to /remotely-data on the host. In the | ||
# new file, a Docker volume is used. | ||
# For new installations, it's recommended to use the docker-compose.yml file. | ||
# You can migrate to the new version by copying your existing Remotelydb file | ||
# to the Docker volume and restarting the container. | ||
|
||
services: | ||
remotely: | ||
image: immybot/remotely:latest | ||
volumes: | ||
- /remotely-data:/app/AppData | ||
build: | ||
context: ../ | ||
dockerfile: Server/Dockerfile | ||
ports: | ||
- "5000:5000" | ||
- "5001:5001" | ||
environment: | ||
- ASPNETCORE_ENVIRONMENT=Production | ||
- ASPNETCORE_HTTP_PORTS=5000 | ||
- ASPNETCORE_HTTPS_PORTS=5001 | ||
# Other ASP.NET Core configurations can be overridden here, such as Logging. | ||
# See https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-8.0 | ||
|
||
# Values for DbProvider are SQLite, SQLServer, and PostgreSQL. | ||
- Remotely_ApplicationOptions__DbProvider=SQLite | ||
# This path shouldn't be changed. It points to the Docker volume. | ||
- Remotely_ConnectionStrings__SQLite=Data Source=/app/AppData/Remotely.db | ||
# If using SQL Server, change the connection string to point to your SQL Server instance. | ||
- Remotely_ConnectionStrings__SQLServer=Server=(localdb)\\mssqllocaldb;Database=Remotely-Server-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true | ||
# If using PostgreSQL, change the connection string to point to your PostgreSQL instance. | ||
- Remotely_ConnectionStrings__PostgreSQL=Server=Host=localhost;Database=Remotely;Username=postgres; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
version: '3.4' | ||
|
||
volumes: | ||
remotely-data: | ||
name: remotely-data | ||
|
||
|
||
services: | ||
remotely: | ||
environment: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters