26 lines
513 B
YAML
26 lines
513 B
YAML
services:
|
|
famhistweb:
|
|
image: httpd:latest
|
|
container_name: apache2
|
|
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=john,password=mary1948"
|
|
device: "//192.168.1.7/FamilyWebSite/" # share on VALHALLA
|
|
|
|
networks:
|
|
caddy_net:
|
|
external: true |