升级失败... 行 115 列 9 -e LANG=en_US.UTF-8

今天 discourse 提示更新。当我执行时,它说执行以下操作:

cd /var/discourse
git pull
./launcher rebuild app

然后抛出:
(\u003cunknown\u003e): 在解析块映射时未找到预期的键,位于第 115 行第 9 列 -e LANG=en_US.UTF-8
这是我的 app.yml:

## 这是全合一、独立的 Discourse Docker 容器模板

##

## 修改此文件后,您必须重建

## /var/discourse/launcher rebuild app

##

## 编辑时请务必*非常小心*!

## YAML 文件对空格或对齐错误非常非常敏感!

## 如有需要,请访问 http://www.yamllint.com/ 来验证此文件

templates:

  - "templates/postgres.template.yml"

  - "templates/redis.template.yml"

  - "templates/web.template.yml"

  - "templates/web.ratelimited.template.yml"

  - "templates/web.socketed.template.yml"

## 如果您希望添加 Let's Encrypt (https),请取消注释这两行

#  - "templates/web.ssl.template.yml"

#  - "templates/web.letsencrypt.ssl.template.yml"

## 此容器应暴露哪些 TCP/IP 端口?

## 如果您希望 Discourse 与 Apache 或 nginx 等其他 Web 服务器共享端口,

## 请参阅 https://meta.discourse.org/t/17247 获取详细信息

#expose:

#  - "8888:80"   # http

#  - "443:443" # https

params:

  db_default_text_search_config: "pg_catalog.english"

  ## 将 db_shared_buffers 设置为总内存的最多 25%。

  ## 将由 bootstrap 根据检测到的 RAM 自动设置,或者您可以覆盖

  db_shared_buffers: "1024MB"

  ## 可以提高排序性能,但会增加每个连接的内存使用量

  #db_work_mem: "40MB"

  ## 此容器应使用哪个 Git 版本? (默认值:tests-passed)

  #version: tests-passed

env:

  LC_ALL: en_US.UTF-8

  LANG: en_US.UTF-8

  LANGUAGE: en_US.UTF-8

  # DISCOURSE_DEFAULT_LOCALE: en

  ## 支持多少并发 Web 请求?取决于内存和 CPU 核心。

  ## 将由 bootstrap 根据检测到的 CPU 自动设置,或者您可以覆盖

  # UNICORN_WORKERS: 2

  ## TODO:此 Discourse 实例将响应的域名

  ## 必需。Discourse 不能与裸 IP 地址一起使用。

  DISCOURSE_HOSTNAME: domain.com

  DISCOURSE_RELATIVE_URL_ROOT: /forums

  ## 如果您希望容器以与上面指定的相同的主机名 (-h 选项) 启动,请取消注释

  ## (默认值 "$hostname-$config")

  #DOCKER_USE_HOSTNAME: true

  ## TODO:将成为初始注册管理员和开发人员的逗号分隔的电子邮件列表

  ## 例如 'user1@example.com,user2@example.com'

  DISCOURSE_DEVELOPER_EMAILS: 'hello@domain.com'

  ## TODO:用于验证新帐户和发送通知的 SMTP 邮件服务器

  # 地址、用户名和密码是必需的

  # WARNING SMTP 密码中的字符 '#' 可能会导致问题!

  DISCOURSE_SMTP_ADDRESS: smtp.gmail.com

  DISCOURSE_SMTP_PORT: 587

  DISCOURSE_SMTP_USER_NAME: hello@domain.com

  DISCOURSE_SMTP_PASSWORD: "password"

  #DISCOURSE_SMTP_ENABLE_START_TLS: true           # (可选,默认 true)

  DISCOURSE_SMTP_DOMAIN: domain.com

  DISCOURSE_NOTIFICATION_EMAIL: hello@domain.com

  ## 如果您添加了 Let's Encrypt 模板,请取消注释下方以获取免费 SSL 证书

  LETSENCRYPT_ACCOUNT_EMAIL: hello@domain.com

  ## 此 Discourse 实例的 HTTP 或 HTTPS CDN 地址(配置为拉取)

  ## 请参阅 https://meta.discourse.org/t/14857 获取详细信息

  #DISCOURSE_CDN_URL: https://discourse-cdn.example.com

  ## 用于 IP 地址查找的 MaxMind 地理位置 IP 地址密钥

  ## 请参阅 https://meta.discourse.org/t/-/137387/23 获取详细信息

  #DISCOURSE_MAXMIND_LICENSE_KEY: 1234567890123456

## Docker 容器是无状态的;所有数据都存储在 /shared 中

volumes:

  - volume:

      host: /var/discourse/shared/standalone

      guest: /shared

  - volume:

      host: /var/discourse/shared/standalone/log/var-log

      guest: /var/log

## 插件放在这里

## 请参阅 https://meta.discourse.org/t/19157 获取详细信息

hooks:

  after_code:

    - exec:

        cd: $home/plugins

        cmd:

          - git clone https://github.com/discourse/docker_manager.git

          - git clone https://github.com/cfstras/discourse-konami.git

          #- git clone https://github.com/discourse/discourse-adplugin.git

          - git clone https://github.com/discourse/discourse-cakeday.git

          #- git clone https://github.com/discourse/discourse-docs.git

          - git clone https://github.com/discourse/discourse-sitemap.git

          - git clone https://github.com/discourse/discourse-solved.git

          #- git clone https://github.com/discourse/discourse-tooltips.git

          - git clone https://github.com/discourse/discourse-yearly-review.git

          - git clone https://github.com/merefield/discourse-word-cloud.git

## 构建后要运行的任何自定义命令

run:

    - exec: echo "Beginning of custom commands"

    - exec:

        cd: $home

        cmd:

          echo entering $home

          - mkdir -p public/forums

          #- cd public/forums

          - ln -s ../uploads

          - ln -s ../backups

          #- rm public/uploads

          #- rm public/backups

    - replace:

       global: true

       filename: /etc/nginx/conf.d/discourse.conf

       from: proxy_pass http://discourse;

       to: |

          rewrite ^/(.*)$ /forums/$1 break;

          proxy_pass http://discourse;

    - replace:

       filename: /etc/nginx/conf.d/discourse.conf

       from: etag off;

       to: |

          etag off;

          location /forums {

             rewrite ^/forums/?(.*)$ /$1;

          }

    - replace:

         filename: /etc/nginx/conf.d/discourse.conf

         from: $proxy_add_x_forwarded_for

         to: $http_your_original_ip_header

         global: true

    - exec: awk -F\\# '{print $1;}' ~/.ssh/authorized_keys | awk 'BEGIN { print "Authorized SSH keys for this container:"; } NF>=2 {print $NF;}'

    - exec: echo "End of custom commands"

我认为问题出在末尾的 replace 节。它的缩进与上面的不同。

你上次升级后编辑过这个吗?

但我已经等了一个小时了,所以我就发了。就连 yamllint.com 也会抱怨。

然后我进行了一次正则表达式搜索和替换来移除所有注释,不知怎么的,它奏效了。我写下这句话时它正在编译。祈祷一切顺利。如果这次又搞砸了,我将不得不放弃。

1 个赞