Any downsides to using docker?
Answered
Himalayan posted this in #help-forum
HimalayanOP
Hey all! I am about to start a new project and was looking forward to using next.js once again. There is however 1 hard requirement at this company, I need to use docker (Kubernetes). I've used Vercel & CF pages before which have worked out really nice, I just wonder if I will run into any issues. Will stuff like ISR, cache invalidation using revalidatePath(), ... all work?
Answered by joulev
if you just use
next start to run the app, or use standalone mode, everything should still work fine2 Replies
@Himalayan Hey all! I am about to start a new project and was looking forward to using next.js once again. There is however 1 hard requirement at this company, I need to use docker (Kubernetes). I've used Vercel & CF pages before which have worked out really nice, I just wonder if I will run into any issues. Will stuff like ISR, cache invalidation using revalidatePath(), ... all work?
if you just use
next start to run the app, or use standalone mode, everything should still work fineAnswer
HimalayanOP
Nice, good to know