36 lines
774 B
YAML
36 lines
774 B
YAML
---
|
|
|
|
# Remotely
|
|
# Remote access to computers
|
|
# immybot
|
|
# ↳ https://github.com/immense/Remotely
|
|
|
|
services:
|
|
remotely:
|
|
image: immybot/remotely:latest
|
|
container_name: remotely
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 80:80
|
|
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- ASPNETCORE_HTTP_PORTS=5000
|
|
- Remotely_ApplicationOptions__DbProvider=SQLite
|
|
- Remotely_ApplicationOptions__DockerGateway=172.18.0.1
|
|
- Remotely_ConnectionStrings__SQLite=Data Source=/app/AppData/Remotely.db
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /home/fxequals/docker/remotely/data:/app/AppData
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|