https://supertokens.com/ logo
#random
Title
r

rp

03/30/2022, 6:45 AM
That may be an issue with the tool you are using
Try putting the full registry path against the image key in the compose file
c

Cat Swolo

03/30/2022, 6:52 AM
I've put it like this
Copy code
yml
supertoken-users:
    image: registry.supertokens.io/supertokens/supertokens-postgres
    ports:
      - '3567:3567'
    environment:
      - MYSQL_USER=username
      - MYSQL_PASSWORD=password
      - MYSQL_HOST=host
      - MYSQL_PORT=3306
      - MYSQL_DATABASE_NAME=supertokens
I got an error where it says that it doesnt know such repository name
Oh, I have to remove the registry part
Nvm
Now I have to do a docker login
r

rp

03/30/2022, 6:58 AM
You shouldn't have to remove the registry part. That's odd.
The image you are trying is
registry.supertokens.io/supertokens/supertokens-postgres
, but it should be
registry.supertokens.io/supertokens/supertokens-postgresql
. You missed the "ql" part at the end.
c

Cat Swolo

03/30/2022, 7:01 AM
omg thank you
Im feeling stupid rn
r

rp

03/30/2022, 7:02 AM
haha.. don't worry about it. Happens to all of us.
c

Cat Swolo

03/30/2022, 7:02 AM
it runs, thank you so much
3 Views