问题描述
我是使用docker的新手,尽管我按照教程创建了nginx Web服务器容器,并且在Dreamweaver中创建了一个网站.我想知道如何使用虚拟Web服务器将Dreamweaver站点托管为测试服务器.我可以只打开风筝并抓取Nginx,然后将Dreamweaver文件放到该网站上的2048(游戏)示例中吗?
I'm new to using docker though I followed the tutorials to create a nginx web server container and I have a website created in Dreamweaver. I was wanting to know how I can use the virtual web server to host my Dreamweaver site as a test server. Can I just open the kitematic and grab a nginx and place my Dreamweaver file into like the 2048 (game) example on there website?
推荐答案
这个问题相当广泛,但从本质上讲,您想从nginx docker镜像开始.创建一个Dockerfile
来复制和配置您的dreamweaver应用程序,并使用FROM nginx
指令.
This question is pretty broad but in essence you'd want to start with the nginx docker image. Create a Dockerfile
that copies and configures your dreamweaver app and use the FROM nginx
directive.
更多信息此处
这篇关于如何获得我的Dreamweaver站点以将我的Nginx泊坞窗容器用作Web测试服务器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!