|
You are here |
vsupalov.com | ||
| | | | |
blog.miguelgrinberg.com
|
|
| | | | | miguelgrinberg.com | |
| | | | |
www.calazan.com
|
|
| | | | | [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. | |
| | | | |
ketanvijayvargiya.com
|
|
| | | | | 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... | |
| | | | |
boucek.me
|
|
| | | FreeBSD 13 does not (yet) contain working Docker machine, although several implementations are on the way. This post explains how to install Docker daemon in Alpine Linux running in Bhyve. It also shows how to create NAT in Bhyve. I have to use NAT, because I use link aggregation (failover) between Wi-Fi and Ethernet. I will use following tools: pf - Packet Filter, part of the base system vm-bhyve, grub2-bhyve - CLI front end for Bhyve tmux - optional, replacement for default cu Networking Link to headin... | ||