Webtop custom user

Hi!
I created a docker-compose.yml for my debian-host:

                                                            docker-compose.yml *                                                                       
---
version: '2.1'
services:
  webtop:
    image: lscr.io/linuxserver/webtop:ubuntu-xfce
    container_name: webtop
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Oslo
      - SUBFOLDER=/ #optional
      - TITLE=jetson_env #optional
      - CUSTOM_USER=dejhost
      - PASSWORD=passwd
    volumes:
      - /path/to/data:/config
      - /var/run/docker.sock:/var/run/docker.sock #optional
    ports:
      - 3000:3000
      - 3001:3001
    devices:
      - /dev/dri:/dev/dri #optional
    shm_size: '1gb' #optional
    restart: unless-stopped

The Custom-user and PW have no effect: I am still user abc, no login required. Do I misunderstand the instructions?
Thanks for helping.

They have nothing to do with abc, as stated in the readme. They are for http basic auth.

Thank you, driz!

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.