我正在考虑在GitHub页面中创建一个博客。
位置如下。
https://allanxu49.github.io/BlogTest/index.html
根据以下文章: https://help.github.com/articles/custom-domain-redirects-for-github-pages-sites/
网址必须为“BlogTest.CustomDomain.com”
我不想局限于上述网址。
我上面的网站可以拥有“CustomDomain.com”或“www.CustomDomain.com”域名吗?
在我作为DNS域之前,我想验证我是否可以选择我喜欢的URL格式。
请注意我知道我可以通过用户页面网站获得更多灵活性。我喜欢用项目页面网站
完成这项工作答案 0 :(得分:1)
是的,你可以。将version: '2'
services:
endpoint:
build:
context: .
dockerfile: Dockerfile
image: myimage_end:0.1
command: -uendpoint
ports:
- 51393:51393
networks:
- internal
server:
build:
context: .
dockerfile: Dockerfile
image: myimage_server:0.1
command: -userver -e endpoint:51393
ports:
- 51392:51392
depends_on:
- endpoint
networks:
- internal
volumes:
- /local_path/dataset:/dataset
networks:
internal:
driver: bridge
,ALIAS
或ANAME
记录到您的DNS提供商:https://help.github.com/articles/setting-up-an-apex-domain/