Docker Compose部署Nginx的方法步驟
使用Docker Compose
部署Nginx
,創建docker-compose.yaml
:
[root@192 ~]# vim docker-compose.yaml
輸入以下內容:
version: '3' services: nginx: container_name: nginx image: nginx restart: always ports: - 8080:80 privileged: true networks: - mynginx networks: mynginx: driver: bridge
基於docker-compose.yaml
創建並啟動容器:
[root@192 ~]# docker compose up [+] Running 7/7 ⠿ nginx Pulled 20.5s ⠿ 5eb5b503b376 Pull complete 12.6s ⠿ 1ae07ab881bd Pull complete 14.8s ⠿ 78091884b7be Pull complete 14.9s ⠿ 091c283c6a66 Pull complete 15.0s ⠿ 55de5851019b Pull complete 15.1s ⠿ b559bad762be Pull complete 15.2s [+] Running 2/2 ⠿ Network root_mynginx Created 0.3s ⠿ Container nginx Created 1.8s Attaching to nginx nginx | /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration nginx | /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/ nginx | /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh nginx | 10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf nginx | 10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf nginx | /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh nginx | /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh nginx | /docker-entrypoint.sh: Configuration complete; ready for start up nginx | 2022/02/13 03:43:39 [notice] 1#1: using the "epoll" event method nginx | 2022/02/13 03:43:39 [notice] 1#1: nginx/1.21.6 nginx | 2022/02/13 03:43:39 [notice] 1#1: built by gcc 10.2.1 20210110 (Debian 10.2.1-6) nginx | 2022/02/13 03:43:39 [notice] 1#1: OS: Linux 3.10.0-1160.el7.x86_64 nginx | 2022/02/13 03:43:39 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576 nginx | 2022/02/13 03:43:39 [notice] 1#1: start worker processes nginx | 2022/02/13 03:43:39 [notice] 1#1: start worker process 31
關閉防火墻:
[root@192 ~]# systemctl stop firewalld
本地瀏覽器可以訪問,說明Nginx
部署成功瞭。
Docker
也可以查到Docker Compose
拉取的鏡像和創建的容器。
[root@192 ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest c316d5a335a5 2 weeks ago 142MB lazyteam/lazydocker latest 3b572700e20d 10 months ago 69.9MB portainer/portainer latest 580c0e4e98b0 11 months ago 79.1MB openjdk 8-jdk-alpine a3562aa0b991 2 years ago 105MB [root@192 ~]# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e31945577104 nginx "/docker-entrypoint.…" 7 minutes ago Up 7 minutes 0.0.0.0:8080->80/tcp, :::8080->80/tcp nginx
後臺up
(防火墻需要先開啟,不然會報錯):
[root@192 ~]# systemctl start firewalld [root@192 ~]# docker compose up -d [+] Running 1/1 ⠿ Container nginx Started
關閉服務:
[root@192 ~]# docker compose stop nginx [+] Running 1/1 ⠿ Container nginx Stopped
啟動服務:
[root@192 ~]# docker compose start nginx [+] Running 1/1 ⠿ Container nginx Started
到此這篇關於Docker Compose部署Nginx的方法步驟的文章就介紹到這瞭,更多相關Docker Compose部署Nginx內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Docker Compose的安裝和使用步驟
- docker-compose安裝yml文件配置方式
- 解決使用Docker Compose管理容器的問題
- Docker初級網絡端口映射的配置
- docker images本地遷移的實現