提问人:mlodhi 提问时间:11/14/2023 更新时间:11/14/2023 访问量:27
Shopware 6:如何使用 CLI 命令在 Shopware docker 容器中设置店面域 URL
Shopware 6: How can I set storefront domain URL in Shopware docker container using CLI command
问:
我有一个在端口 8080 上运行的 Shopware 6 docker 容器。我正在使用这些命令安装和激活插件。
docker cp $PLUGIN_NAME $SHOPWARE_CONTAINER_ID:/var/www/html/custom/plugins/
docker exec -it $SHOPWARE_CONTAINER_ID /bin/bash -c "cd /var/www/html && bin/console plugin:install --activate $PLUGIN_NAME"
默认情况下,店面的域 URL 为 。如何使用 CLI 命令将 Shopware 配置为用作店面域 URL?http://localhost/
http://localhost:8080/
有什么办法可以使用CLI命令来做到这一点吗?任何帮助将不胜感激。
答:
1赞
Rune Laenen
11/14/2023
#1
该命令将更新每个销售渠道的销售渠道域。bin/console sales-channel:update:domain newdomain.com
要仅将 1 个特定域替换为新域,您可以使用“previousDomain”选项。
例如,如果“localhost”是当前配置的域,我将尝试以下命令:
bin/console sales-channel:update:domain "localhost:8080" localhost
评论
0赞
mlodhi
11/14/2023
谢谢,实际上我正在运行一个 test.sh 脚本文件。我有我在问题中提到的命令。您给出的命令会在脚本中起作用吗?
评论