How to set up Kibana and Elasticsearch locally, within Docker containers.
Tag: Docker
Pull the docker image for mongo down to your computer. docker pull mongo Run the mongo container in the background, isolated from the rest of your computer. # Command explained belowdocker run -d -p 27017:27017 –name mongodb mongo -v /data/db:/data/db What I love about this approach is that I don’t start muddying up my computer…
Categories
Docker braindump
A collection of my learnings, notes and musings on Docker.
Categories
Been learning to use Docker Swarm
Despite not yet managing to get what I have learnt implemented, I have nonetheless took on board some good concepts around docker and docker swarm
Categories
How I would set up Laravel with Docker
This is a quick brain dump for myself to remember how I set up Laravel with Docker. Hopefully it can help others out also.