Django Dev Env w/ Docker Compose
A few years back I ran into a problem when working with Django on Windows while my colleagues were on Mac OS where a datetime routine (forgot which one) behaved…
A few years back I ran into a problem when working with Django on Windows while my colleagues were on Mac OS where a datetime routine (forgot which one) behaved…
For the longest time, Docker just didn't like Windows Home. Legend has it that, with VirtualBox running a Linux VM, you then can install Docker Toolbox on top of that.…
Start with Docker's doc The link https://docs.docker.com/compose/django/ for the most part is valid in setting up a development environment for working with Django in Docker. Update to use Pipfile The…
More findings from working with MVN repository When mvn release:perform is run, there are two steps that I didn't pay attention to before. Of course, the building, signing, and uploading…
It turns out that this is quite an involved process with a lot of configuration and coordination w/ Sonatype. It took several days, upwards to a week or so, for…
Some Docker notes of commands for reference Images Listing images docker images Running images docker run <image name> docker run <repo name>/<image name> Building images Create a Dockerfile file with…
Project Setup From the CLI or http://start.spring.io/, initialize a project with "web" capability. What ends up happening is addition of the dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> Start with this directory…