fix: update docker-compose to use HTTPS and remove unused networks

This commit is contained in:
Mohab Gabber 2025-04-03 15:01:42 +02:00
parent b1cb7f626c
commit bc156c6ddf

View File

@ -3,12 +3,9 @@ services:
image: bluewaveuptime/uptime_client:latest
restart: always
environment:
UPTIME_APP_API_BASE_URL: "http://${DOMAIN}/api/v1"
UPTIME_APP_API_BASE_URL: "https://${DOMAIN}/api/v1"
depends_on:
- server
networks:
- dbNet
- dokploy-network
server:
image: bluewaveuptime/uptime_server:latest
@ -25,8 +22,6 @@ services:
- SYSTEM_EMAIL_PASSWORD=${EMAIL_PASSWORD}
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- dbNet
redis:
image: bluewaveuptime/uptime_redis:latest
@ -34,8 +29,6 @@ services:
hostname: checkmate-redis
volumes:
- ../files/redis/data:/data
networks:
- dbNet
mongodb:
image: bluewaveuptime/uptime_database_mongo:latest
@ -44,9 +37,3 @@ services:
volumes:
- ../files/mongo/data:/data/db
command: ["mongod", "--quiet"]
networks:
- dbNet
networks:
dokploy-network:
dbNet: