That may be an issue with the tool you are using
# random
r
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
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
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
omg thank you
Im feeling stupid rn
r
haha.. don't worry about it. Happens to all of us.
c
it runs, thank you so much
3 Views