Replies: 1 comment 12 replies
-
@nf9k Are you accessing PocketID from a secure context (HTTPS)? Webauthn will require HTTPS the only exception is localhost i believe. |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Clean setup. Here is my docker-compose.yml:
`
services:
pocket-id:
container_name: pocket-id
image: stonith404/pocket-id:latest
environment:
- PUID=6969
- PGID=6969
restart: unless-stopped
ports:
- 3000:80
`
And here is my file structure showing proper ownership:
root@docker-prod1: /docker/pocket-id/data # ls drwxr-xr-x 6969 6969 4.0 KB Mon Jan 20 22:00:00 2025 . drwxr-xr-x 6969 6969 4.0 KB Mon Jan 20 18:35:53 2025 .. drwx------ 6969 6969 4.0 KB Mon Jan 20 18:35:54 2025 keys .rw-r--r-- 6969 6969 156 KB Mon Jan 20 22:00:00 2025 pocket-id.db drwxr-xr-x 6969 6969 4.0 KB Mon Jan 20 18:35:54 2025 uploads
I've deleted, rebuilt, always with the same result.
Beta Was this translation helpful? Give feedback.
All reactions