This repository has been archived on 2025-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
swarm-production/stacks/tracker/stack.yml
John Allison e501099281
All checks were successful
Deploy to Swarm / deploy (push) Successful in 2s
New Service: Taylor's Tracker
2025-10-25 12:42:07 -04:00

19 lines
530 B
YAML

services:
tracker-nginx:
image: nginx:alpine
ports:
- 8180:80
networks:
- homelab
volumes:
- /mnt/swarm-data/webservers/production/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- /mnt/swarm-data/webservers/production/nginx/.conf/default.conf:/etc/nginx/conf.d/default.conf:ro
- /mnt/swarm-data/webfiles/production/taylors-development:/usr/share/nginx/html:ro
deploy:
replicas: 3
placement:
constraints:
- node.role == worker
networks:
homelab:
external: true