-
Notifications
You must be signed in to change notification settings - Fork 924
docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate not working on windows 10 OS #880
-
docker run --rm -v $(pwd):/src -w /src kjconroy/sqlc generate not working on windows 10 OS
I tried :
docker run --rm -v %cd% -w /src kjconroy/sqlc generate
not working
my sqlc.yaml is in current directory same path returned by %cd%
Beta Was this translation helpful? Give feedback.
All reactions
I added Windows support (#886) here, which means you can now download tip releases for Windows. A huge caveat: these builds do not support the PostgreSQL engine.
Replies: 4 comments 2 replies
-
Can you provide a bit more information? When you say "not working", what do you mean? Is there any output? Is there an error message?
Beta Was this translation helpful? Give feedback.
All reactions
-
Please add a way that we can install SQLC on Windows 10 using chocolatey or Scoop
Thank you very much for your Great work :)
Beta Was this translation helpful? Give feedback.
All reactions
-
I added Windows support (#886) here, which means you can now download tip releases for Windows. A huge caveat: these builds do not support the PostgreSQL engine.
Beta Was this translation helpful? Give feedback.
All reactions
-
i tried : docker run --rm -v D:\simplebank:/src -w /src kjconroy/sqlc generate
return this :# package db
error parsing queries: path /src/db/query does not exist
Makefile:17: recipe for target 'sqlc' failed
how to solve
Beta Was this translation helpful? Give feedback.
All reactions
-
docker run --rm \
-v ${PWD}:/src \
-w /src \
kjconroy/sqlc \
generate
Beta Was this translation helpful? Give feedback.
All reactions
-
if ${PWD} does not work these below do
-v "$(pwd)":/src
or with subfolders
-v "$(pwd)"/path1/path2:/src
Beta Was this translation helpful? Give feedback.