Software, DevOps & Infrastructure Blog
Backend + Frontend on a Single Container
If you’re like me and you don’t want things to be complicated, then you obviously want everything to run in the same container (I’m exagerating obviously)In this example I’ll be…
Python OpenSUSE Leap Image
This Dockerfile is a simple build for a WSGI app (This one is Django) FROM opensuse/leap:15.5 RUN zypper –non-interactive si -d python311 python311-pip \ && zypper –non-interactive in python311…
Prepare Docker on Armbian
Documentation copied from here: https://docs.armbian.com/User-Guide_Advanced-Features/#how-to-run-docker, added here in case that goes down. The following should work for any debian based OS, but currently I’m working with ArmbianInstallation ScriptFirst switch to…
Handle CORS on CaddyServer
What is CORS?CORS (Cross-Origin Resource Sharing) is a Header used to let your Browser know that a Website with a different URL is allowed to use your API.For example, your…