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?
相关问题
- Docker task in Azure devops won't accept "$(pw
- Unable to run mariadb when mount volume
- Unspecified error (0x80004005) while running a Doc
- What would prevent code running in a Docker contai
- How can I prevent my Shiny App from disconnecting
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 theFROM nginx
directive.More info here
I think that using a
FROM nginx
is a bad idea. NGINX is a service on its own and should run within a docker as a stand-alone.Your website-docker and your nginx-docker should communicate together using
--link <name or id>:alias
.If you have several websites, you should have several dockers but still only one nginx. So if every websites docker embedded their own nginx that's messy and far away from the best practice...