Category: Uncategorized
Qiskit
Watch “二次量子科技革命─量子電腦霸權已經降臨?│2019 秋季展望科普演講” on YouTube
Learn to Code — For Free — Coding Courses for Busy People
OverTheWire: Wargames
Vertical Farming
Nim and the Powers of Two
Publish Docker Ports
By default, when you create or run a container using docker create or docker run, it does not publish any of its ports to the outside world. To make a port available to services outside of Docker, or to Docker containers which are not connected to the container’s network, use the --publish or -p flag. This creates a firewall rule which maps a container port to a port on the Docker host to the outside world.
Here are some examples.
| Flag value | Description |
|---|---|
-p 8080:80 | Map TCP port 80 in the container to port 8080 on the Docker host. |
-p 192.168.1.100:8080:80 | Map TCP port 80 in the container to port 8080 on the Docker host for connections to host IP 192.168.1.100. |
-p 8080:80/udp | Map UDP port 80 in the container to port 8080 on the Docker host. |
-p 8080:80/tcp -p 8080:80/udp | Map TCP port 80 in the container to TCP port 8080 on the Docker host, and map UDP port 80 in the container to UDP port 8080 on the Docker host. |
Commit Changes to Docker Image
You can create a new docker image by committing the changes in an existing using the following syntax:
sudo docker commit [CONTAINER_ID] [new_image_name]
Suppose there is a running docker with name “existing-image” (you can check with “docker ps -a”), the below common will commit the changes made in the running docker into the “new-image” image.
docker commit existing-image new-image
You must be logged in to post a comment.