Eliminar archivos y configuraciones obsoletas de Docker y scripts en el proyecto onedrive

This commit is contained in:
2025-12-07 11:45:58 -05:00
parent 950a1704ee
commit 24af1dff01
17 changed files with 60 additions and 112 deletions

33
docker-compose.yml Normal file
View File

@@ -0,0 +1,33 @@
---
services:
odengin:
build: ./odengin # Ajusta la ruta al directorio con su Dockerfile
container_name: odengin
environment:
- E5_CLIENT_ID=id
- E5_CLIENT_SECRET=secret
- E5_REFRESH_TOKEN=tokenit
- WEB_APP_PASSWORD=123
- E5_WEB_APP_PASSWORD=123
ports:
- 8089:8080
restart: unless-stopped
hostname: odengin
networks:
- odeng-net
odcron:
build: ./odcron # Ajusta la ruta al directorio con su Dockerfile
container_name: odcron
environment:
- IP=odengin:8080 # Usa el nombre del servicio para comunicación interna
- PASSWORD=pass
- REFRESH_TOKEN=tokenit
restart: unless-stopped
hostname: odcron
networks:
- odeng-net
networks:
odeng-net:
driver: bridge