Files
Prod/famhistweb/docker-compose.yml
2026-01-06 21:01:59 +00:00

27 lines
530 B
YAML

services:
famhistweb:
image: httpd:latest
container_name: apache2
deploy:
placement:
constraints:
- node.labels.target != here
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=john,password=mary1948"
device: "//192.168.1.7/FamilyWebSite/" # share on VALHALLA
networks:
caddy_net:
external: true