Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How docker runs nginx static Web sites

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the knowledge of "how docker runs nginx static website". Many people will encounter such a dilemma in the operation of actual cases, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Nginx is a web server, which needs a persistent server, and we generally choose to run in the background.

Pull nginx image

[root@xinsz10 ~] # docker pull hub.c.163.com/library/nginx:latest

Latest: Pulling from library/nginx

5de4b4d551f8: Pull complete

D4b36a5e9443: Pull complete

0af1f0713557: Pull complete

Digest: sha256:f84932f738583e0169f94af9b2d5201be2dbacc1578de73b09a6dfaaa07801d6

Status: Downloaded newer image for hub.c.163.com/library/nginx:latest

two。 View the downloaded nginx image

[root@xinsz10 ~] # docker images

REPOSITORY TAG IMAGE ID CREATED SIZE

Hello-world latest 05a3bd381fc2 4 weeks ago 1.84kB

Hub.c.163.com/library/nginx latest 46102226f2fd 5 months ago 109MB

3. Run nginx

[root@xinsz10 ~] # docker run hub.c.163.com/library/nginx

4. Check to see if it is running

Reopen a window to execute the command

Root@xinsz10 ~] # docker ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES

039303f1129e hub.c.163.com/library/nginx "nginx-g 'daemon..." About a minute ago Up About a minute 80/tcp stoic_almeida

You can see that nginx has been started.

This way is to run in the foreground, just stop using ctrl+c directly.

The method of running nginx in the background

You can use the parameter-d

[root@xinsz10] # docker run-d hub.c.163.com/library/nginx

WARNING: IPv4 forwarding is disabled. Networking will not work.

D1c2d8e307e75170428a433dbdc97fe6f817cc01097c0b32bbd72cf69b96b6c5

Reopen a window to see if it is running

[root@xinsz10 ~] # docker ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES

D1c2d8e307e7 hub.c.163.com/library/nginx "nginx-g 'daemon..." 55 seconds ago Up 53 seconds 80/tcp xenodochial_snyder

You can see that the red ID number is the same.

It means that the container is already running.

If we want to manage nginx, we can use docker exec directly when we enter the nginx.

Check out the help for using docker exec

[root@xinsz10] # docker exec-- help

Usage: docker exec [OPTIONS] CONTAINER COMMAND [ARG...]

Run a command in a running container

Options:

-d,-- detach Detached mode: run command in the background

-- detach-keys string Override the key sequence for detaching a

Container

-e-- env list Set environment variables

-- help Print usage

-I-- interactive Keep STDIN open even if not attached

-- privileged Give extended privileges to the command

-t,-- tty Allocate a pseudo-TTY

-u,-user string Username or UID (format: [:])

Our more commonly used parameters are-I and-t

[root@xinsz10] # docker exec-it D1 bash # Note: D1 is the ID number of nginx just now. I took the first two digits.

Root@d1c2d8e307e7:/#

This brings you into a docker nginx terminal, which is equivalent to a shell terminal.

It's the same as shell here, with all Linux commands.

Root@d1c2d8e307e7:/# pwd

/

Root@d1c2d8e307e7:/# ls

Bin dev home lib32 libx32 mnt proc run srv tmp var

Boot etc lib lib64 media opt root sbin sys usr

Root@d1c2d8e307e7:/# which nginx

/ usr/sbin/nginx

Exit the container:

Root@d1c2d8e307e7:/# exit

Exit

That's all for "how docker runs the nginx static website". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report