unxplained

Members
  • Posts

    3
  • Joined

  • Last visited

unxplained's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hello, I got it! Here's for reference if anyone needs. version: '3.3' services: ferdi-client: container_name: Ferdi-Client ports: - '8080:8080' environment: - UID=XXXX - GID=XXX - UMASK=0000 - DATA_PERMS=770 - TURBOVNC_PARAMS=-securitytypes VNC volumes: - '/your/folder:/ferdi' image: ich777/ferdi-client And then set up the password as per recommended post - su $USER - vncpasswd - enter password twice Thanks!
  2. Hello, So these are my steps: - Using docker compose, build the container (without turbovac_params) - su $USER etc etc to create password - go to container variable where turbovac_params is = -securitytypes none - edit that parameter to be empty - when the container recreates and replaced the previous one, turbovac_params is still securitytypes none I also tried to add a testvar = {empty}, but when the container recreates, this variable doesn't exist I assume this means portainer doesn't allow empty environment variables. If I were to set this up via command line, how would I go about doing it? EDIT: error message in container's logs /opt/scripts/start-server.sh: line 121: 76 Aborted (core dumped) ${DATA_DIR}/ferdi --no-sandbox --disable-accelerated-video --disable-gpu --dbus-stub 2> /dev/null Thanks
  3. Hi, I'm trying to set a password for the TURBOVNC, I referred to the recommended post but I am not running unraid, just regular docker + portainer. Is there a way to set up the password in the docker compose file instead? Thanks