unable to deploy adonis application using docker #4847
-
I followed the instructions closely from this page https://docs.adonisjs.com/guides/getting-started/deployment but whenever I run my container, I get the following error:
This surprises me because I have no issue when I run
I am also able to run the app successfully. I am pretty new to Docker as well as much of the tooling in Adonis. Advice will be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @thealexbaron! 👋🏻 It looks like this might be a casing issue. Windows and macOS are case-insensitive systems, whereas Linux (and therefore your container) is case-sensitive. If you look closely at the import statement, it's spelled Form with a capital F. Could you please double-check that your import doesn't contain any capital letters? |
Beta Was this translation helpful? Give feedback.
Hey @thealexbaron! 👋🏻
It looks like this might be a casing issue. Windows and macOS are case-insensitive systems, whereas Linux (and therefore your container) is case-sensitive.
If you look closely at the import statement, it's spelled Form with a capital F. Could you please double-check that your import doesn't contain any capital letters?