initial commit

This commit is contained in:
Carneiro 2025-02-27 10:20:24 -03:00
commit b7559ad887
2 changed files with 31 additions and 0 deletions

11
.env.example Normal file
View File

@ -0,0 +1,11 @@
OLLAMA_BASE_URL=''
ENABLE_LDAP=true
LDAP_SERVER_LABEL='ldapname'
LDAP_SERVER_HOST='openldap.host'
LDAP_SERVER_PORT=389
LDAP_USE_TLS=false
LDAP_APP_DN=''
LDAP_APP_PASSWORD=''
LDAP_ATTRIBUTE_FOR_USERNAME=''
LDAP_SEARCH_BASE=''
LDAP_SEARCH_FILTERS=''

20
docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
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