openwebui/docker-compose.yml

21 lines
514 B
YAML

services:
webui:
image: ghcr.io/open-webui/open-webui:main
restart: always
env_file:
- .env
volumes:
- open-webui:/app/backend/data
networks:
- traefik-public
labels:
traefik.enable: true
traefik.http.routers.openwebui.rule: Host(`chat.alice.ufsj.edu.br`)
traefik.http.routers.openwebui.entrypoints: websecure
traefik.http.services.openwebui.loadBalancer.server.port: 8080
volumes:
open-webui: {}
networks:
traefik-public:
external: true