Open TomErnst1972 opened 2 months ago
this is my config/users.yml:
[root@pve-thinkstation rtabby-web-api]$ cat config/users.yml
users:
- name: 'Tom'
token: '7fa02f65-b34a-46d8-acc0-01bd5fcaea22'
this is the docker-compose.yml
[root@pve-thinkstation rtabby-web-api]$ cat docker-compose.yml
services:
rtabby:
container_name: rtabby-web-api
image: ghcr.io/clem-fern/rtabby-web-api:sqlite-minimal
user: "1000:1000"
cap_add:
- "CAP_DAC_OVERRIDE"
cap_drop: ['ALL']
read_only: true
ports:
- "8080:8080"
environment:
- DATABASE_URL=sqlite:///config/db.sqlite
- HTTPS_CALLBACK=true
volumes:
- ./config:/config
networks:
- frontend
networks:
frontend:
name: rtabby_net_frontend
Hey @TomErnst1972
login endpoint is only exposed when using third party login feature.
In your case, the only thing you have to do after adding your token into users.yml
is to configure Tabby to use your synchronisation service.
I should probably update readme to make it clearer about this ^^'
hi,
I set up the the docker image while using "sqlite-minimal" According to the documentation I should be able to go to (in my case) http://192.168.1.231:8080/login but I receive an 404...
I'd like to use only local users, without any third-party auth provider...
docker logs follows:
Can you point me in the right direction please?
br, Tom