A short tutorial on deploying Remix app on fly.io Fly.io is one of the platforms that you can use to run your applications on the internet I am not going to cover fly.io or docker basics. Fly uses docker containers to run the applications. We will take a look at how we can develop and test dockerized remix app locally.
1npx create-remix@latestRun the app locally
1cd remix-fly-ex2npm run devNext up deploy it to fly.io
1flyctl deployvisit https://fly.io/apps/
if everything goes fine your app will show up
Build
1docker build -t ch4nd4n/remix-fly .Run as docker contianer
1docker run -it --rm -ePORT=8080 -p8080:8080 ch4nd4n/remix-flyChange something in route and validate it