hey all, I'm looking in to how I'd go about backin...
# orm-help
m
hey all, I'm looking in to how I'd go about backing up my prisma database (currently working with a local prisma server install using docker) I'm not up to speed with docker and I'm not quite sure how everything is working. So far I've gotten to this command:
Copy code
docker exec 3967e1d0b194 /usr/bin/mysqldump --default-character-set=utf8mb4 -u root --password=prisma prisma > backup.sql
Which seems to be semi-working. It creates a backup of the deployed prisma API but doesn't seem to contain any of the entries / values that have been created via the deployed API. Could anyone point me in the right direction?