news-analyze/docker-compose-beta.yml
吳元皓 0c904fd5bd
Some checks failed
Build and Push Beta Image / build-and-push (push) Has been cancelled
Delete funding.yml as the Lawsnotes thingy & Update README & Wipedev
scripts to give windows ppl a script to use & add MORE docker-compose
files :D also updated deploy.md & gitignore, but the groq api thing is
still broken tho.
2025-07-02 22:46:39 +08:00

29 lines
855 B
YAML
Executable file

services:
reverse-proxy:
image: traefik:v3.1
command:
- --providers.docker
- --providers.docker.exposedbydefault=false
- --entrypoints.web.address=:80
ports:
- 127.0.0.1:36695:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- n3abetaweb
service:
image: ghcr.io/hpware/news-analyze:beta
networks:
- n3abetaweb
labels:
- traefik.enable=true
- traefik.http.routers.newsanalyzebeat.rule=Host(`YOUR_HOSTNAME_HERE`) # YOUR HOSTNAME HERE
- traefik.http.services.newsanalyzebeta.loadbalancer.server.port=3000
- com.centurylinklabs.watchtower.enable=true
restart: unless-stopped
# Use only one node to ease development, as this is not for prod use.
env_file:
- path: ./.env
required: true
networks:
n3abetaweb: null