1

我的服务器在 podman 中运行 gitlab。

我想要 gitlab 连接子域。

测试命令

podman start gitlab-ce --VIRTUAL-HOST=test.example.com -p 80 

如何在 podman 中设置 virtualHost?

4

1 回答 1

1

根据GitLab 文档,可以使用以下方式启动容器:

sudo podman run --detach \
  --hostname gitlab.example.com \
  --env GITLAB_OMNIBUS_CONFIG="external_url 'http://test.example.com/';" \
  --publish 443:443 --publish 80:80 \
  --name gitlab \
  --restart always \
  gitlab/gitlab-ce:latest

sudo需要绑定80和443端口。

于 2020-05-06T19:39:52.080 回答