Message Queue MUD Dockerization Update

I made progress on that MUD I’ve been working on. Try it out (yea, naming things is hard): 1 2 3 git clone -b v0.1.0_share https://gitlab.com/modle13/queue-mud.git cd queue-mud docker-compose up Over the weekend, I got it working nearly back to the state it was before dockerizing. There’s a bit less logic (the creatures decision point just returns a string), and the Angular frontend is still disabled. I had had a publisher and consumer working back in early January, but now it has the whole chain: command > validate > attack if command is attack and there’s a target > response queue....

February 7, 2019

Containerizing the Flask, Angular, RabbitMQ MUD  [draft]

Here it is running on the bare metal linux mint install. We’re going to run it in minikube. First, containerizing the angulars Got the angular app up and running with this Dockerfile https://mherman.org/blog/dockerizing-an-angular-app/ With the frontend running in a container, and the flask backend and rabbitMQ running on bare metal, everything is working as expected. Then, containerizing the flasks This was pretty slick, but didn’t work with my code:...

December 15, 2018

Adding a Mount for Docker Images  [draft]

My docker-compose experiments filled up the 50G SSD partition pretty quick. I still had 500 GB of my 1TB drive unallocated, so I figured out how to make a mount, then symlinked the docker dir there. Format the partition (Linux Mint UI) Menu > Disks > 1.0 TB Hard Disk > Unallocated > + > Ext4 Investigate the file system 1 df -h I saw a new /dev/db3 device...

December 1, 2018

Tinkering with Docker Compose  [draft]

https://gitlab.com/modle13/docker-compose-test/commits/master https://gitlab.com/modle13/docker-compose-tinkers https://gitlab.com/modle13/docker-compose-tinkers/blob/master/consul-jenkins/README.md

November 20, 2018

Mucking About With Docker  [draft]

my base python image https://gitlab.com/modle13/docker-python https://docs.docker.com/get-started/part2/ extra flags https://docs.docker.com/engine/reference/commandline/images/#format-the-output –format and –filter pushing to dockerhub https://ropenscilabs.github.io/r-docker-tutorial/04-Dockerhub.html https://hub.docker.com/r/modle/apythonapp/ base ubuntu with apt-get update/install https://docs.docker.com/develop/develop-images/baseimages/#create-a-simple-parent-image-using-scratch $ docker run –rm -it -v $PWD:/build ubuntu:16.04 container# apt-get update && apt-get -y install build-essential (-it is interactive terminal, probably) nginx and stuff 1 docker run ubuntu bash -c "apt-get -y install nginx" or https://www.digitalocean.com/community/tutorials/how-to-run-nginx-in-a-docker-container-on-ubuntu-14-04 1 2 docker pull nginx docker run --name docker-nginx -p 80:80 nginx basic nginx test docker container stop docker-nginx docker container rm docker-nginx TEST_PATH="$HOME/projects/docker-nginx/html” mkdir -p $TEST_PATH echo ‘some html’ > $TEST_PATH/index....

November 12, 2018