I have my prisma server on 1.26, and I want to try...
# orm-help
m
I have my prisma server on 1.26, and I want to try the new prisma admin and I have to update to 1.29. How can I update the server properly?
u
It should be enough to change your docker compose file and your prisma npm cli package version
m
Hi @Uby! I have changed my docker compose from
image: prismagraphql/prisma:1.26
to
image: prismagraphql/prisma:1.29
and my package.json is now
"prisma": "^1.29.0-beta.7",
but when I try to docker-compose trhows an error...
ERROR: manifest for prismagraphql/prisma:1.29 not found
What I am doing wrong?
in the compose u need to use
prismagraphql/prisma:1.29-beta
@Martí Crespí ⬆️
m
Many thanks @Uby, job done! 👍
👍 1
u
np!