commit b2c0b23b6b28d168aadce0bc589c5b07b431467b Author: john Date: Thu Nov 27 15:39:56 2025 +0000 Add nextfamhistweb/docker-compose.yml diff --git a/nextfamhistweb/docker-compose.yml b/nextfamhistweb/docker-compose.yml new file mode 100644 index 0000000..89f851f --- /dev/null +++ b/nextfamhistweb/docker-compose.yml @@ -0,0 +1,25 @@ +services: + nextfamhistweb: + image: httpd:latest + deploy: +# placement: +# constraints: [node.role == worker] + replicas: 1 + restart: on-failure + ports: + - 8888:80 + volumes: + - nas-share:/usr/local/apache2/htdocs + networks: + - caddy_net + +volumes: + nas-share: + driver_opts: + type: cifs + o: "username=admin,password=Gerald1927" + device: "//192.168.1.7/TestFamilyWebSite/" + +networks: + caddy_net: + external: true \ No newline at end of file