mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
436 B
YAML
18 lines
436 B
YAML
version: '3.4'
|
|
|
|
|
|
services:
|
|
remotely:
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Development
|
|
- ASPNETCORE_HTTP_PORTS=5000
|
|
- ASPNETCORE_HTTPS_PORTS=5001
|
|
ports:
|
|
- "5000:5000"
|
|
- "5001:5001"
|
|
volumes:
|
|
- ${APPDATA}/Microsoft/UserSecrets:/home/app/.microsoft/usersecrets:ro
|
|
- ${APPDATA}/ASP.NET/Https:/home/app/.aspnet/https:ro
|
|
build:
|
|
context: ../
|
|
dockerfile: Server/Dockerfile |