Suwayomi / docker-tachidesk

Run Suwayomi-Server in a docker container
Mozilla Public License 2.0
224 stars 56 forks source link

authentication options and uid problem #21

Closed qowmq closed 2 years ago

qowmq commented 2 years ago
  1. No Authentication option in Tachidesk docker?

https://github.com/Suwayomi/Tachidesk-Server/wiki/Configuring-Tachidesk-Server#webui next option:

server.basicAuthEnabled = false
server.basicAuthUsername = ""
server.basicAuthPassword = "" 
  1. uid and gid problem I want to run synology (DSM 7.1-42661 Update 4) from docker. trying to map the folder /home/suwayomi/.local/share/Tachidesk ghcr.io/suwayomi/tachidesk_ uid and gid are fixed at 1000. Synology doesn't have an account with uid and gid of 1000.

I want to set the uid and gid directly.

Here is the compose file I tried:

version: '3.3'
services:
    suwayomi:
        image: ghcr.io/suwayomi/tachidesk:preview-java11
        container_name: tachidesk
        ports:
           - '4567:4567'
        volumes:
            - '/volume1/docker/tachidesk/config:/home/suwayomi/.local/share/Tachidesk'
        environment:
           - TZ=Asia/Seoul
           - PUID=1000
           - PGID=100
           - LOGGING=out
        #network_mode: "container:gluetun"
        restart: on-failure:3
arbuilder commented 2 years ago

For authentication u can edit the server.conf file for native auth or use authelia like containers since u are using docker.

uid is known issue but i cannot implement the changes without sisgnificant people testing it.