Explore >> Select a destination


You are here

vsupalov.com
| | ketanvijayvargiya.com
2.9 parsecs away

Travel
| | Setup # Installation guide: https://docs.docker.com/engine/install/ubuntu/ No sudo: Check this to allow Docker containers to run as non-root. See what's running #docker ps Container-specific commands ## SSH into a running container. docker exec -it 0061ecc7ef37 /bin/bash # Restart docker restart 52835f0907e8 # Stop docker container stop 23642fbe8515 # Stop all docker stop $(docker ps -a -q) # Prune all stopped containers docker container prune Parameters for docker run # -d: Run as daemon. -p 8439:8080: Map port A externally to B internally. -v ~/Documents/TiddlyWikiDockerVolume:/var/lib/tiddlywiki: Map volume A externally to B internally. -e USERNAME="abc": Environment variable. --restart unless-stopped: Automatically bring up the container on Docker daemon...
| | www.calazan.com
2.7 parsecs away

Travel
| | [AI summary] The article explains how to set up a Django development environment using Docker and Docker Compose, replacing traditional virtualenv setups to improve efficiency and consistency across different operating systems.
| | articexploit.xyz
3.0 parsecs away

Travel
| | Blog Post: 5. Docker
| | sagikazarmark.hu
12.1 parsecs away

Travel
| Recently I was tasked with deploying and operating a Symfony application on Kubernetes. Since PHP is not my primary area of work anymore, I was hoping to find some up to date guide and/or best practices about the topic, but sadly that wasn't the case at all, so I decided to write about the process of containerizing the application, building up the infrastructure and deploying it on Kubernetes.