Docker编写退出代码137为NGINX后仍然加倍我的RAM

cuxqih21  于 2022-11-02  发布在  Nginx
关注(0)|答案(1)|浏览(178)

我只是将我的RAM增加了一倍,只是为了检查错误是否真的是因为RAM,但我不这么认为,在将RAM增加一倍后,仍然出现以下问题

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: /etc/nginx/conf.d/default.conf differs from the packaged version
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/11/01 07:18:38 [notice] 1#1: using the "epoll" event method
nginx    | 2022/11/01 07:18:38 [notice] 1#1: nginx/1.23.2
nginx    | 2022/11/01 07:18:38 [notice] 1#1: built by gcc 11.2.1 20220219 (Alpine 11.2.1_git20220219) 
nginx    | 2022/11/01 07:18:38 [notice] 1#1: OS: Linux 5.4.0-131-generic
nginx    | 2022/11/01 07:18:38 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
nginx    | 2022/11/01 07:18:38 [notice] 1#1: start worker processes
nginx    | 2022/11/01 07:18:38 [notice] 1#1: start worker process 29
nginx    | 2022/11/01 07:18:38 [notice] 1#1: start worker process 30
nginx exited with code 137

合成文件:

version: '3.8'
services:
  nginx:
    container_name: nginx
    image: nginx:1.23.2-alpine
    restart: always
    ports:
      - 80:80
      - 443:443
    volumes:
      - /opt/aaa/conf/nginx/:/etc/nginx/conf.d/
      - /opt/aaa/letsencrypt:/etc/letsencrypt/
      - /var/www/html/.well-known:/code/well-known
      - /etc/ssl/dhparam.pem:/etc/ssl/dhparam.pem
      - /opt/aaa/website/static:/code/static
      - /opt/aaa/install:/opt/install
    networks:
      - mehere

networks:
  personal:
    name: mehere

这是从今天开始发生的,在一个脚本刚刚从letsencrypt更新了我的证书之后。
有什么想法吗?

mjqavswn

mjqavswn1#

我只是傻了。我有一个脚本,删除该容器nginx:-)

相关问题