Docker

Avatar
  • updated
  • Considering for Future Release

I'm currently using ScreenConnect in a docker container.


( I've created this simple image: https://hub.docker.com/r/kenayagi/screenconnect/ )
It has been working well so far, but I'm forced to so some magic to correctly update it (read: run db update scripts manually after new pulls).


Any chance of getting official support?
It would be really great to have an official image directly from ConnectWise.

Avatar
0
Luca
Quote from Vitalus

@Luca @James are you stil running SC in a docker? Is it running on the latest version?

Yes. I'm still running inside Docker with the latest versions, even with the mentioned "dirty method" for applying updates.

My docker-compose.yml looks like this:

version: "3.5"

services:
app:
image: kenayagi/screenconnect
restart: always
command: /etc/init.d/screenconnect debug
#command: sleep 7d # This keeps the service paused while I log into the container and update the service manually. When finished I revert.
volumes:
- ./opt:/opt
ports:
- "8041:8041"
networks:
- traefik_net
environment:
- MONO_MANAGED_WATCHER=true
labels:
- "traefik.enable=true"
- "traefik.http.routers.control.rule=Host(`control.mydomain.com`)"
- "traefik.http.services.control.loadbalancer.server.port=8040"
- "traefik.http.routers.control.tls.certresolver=le"

networks:
traefik_net:
external:
name: traefik_net

(The traefik' part would deserve a separate talk, but that's "optional")



Top contributors

Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar
Avatar