Change web interface ports to use expose in docker-compose.yml instead of ports

Change any port changes in docker-compose files to use expose and the default port instead of 3001:3000
Any localhost limited ports changed to expose instead
Add requestrr to caddyfile
This commit is contained in:
Chris King
2025-01-13 11:49:02 -08:00
parent a671b15a96
commit a2dff6fdd8
10 changed files with 28 additions and 13 deletions

View File

@@ -8,8 +8,11 @@ services:
- TZ=America/Los_Angeles
networks:
- proxy-net
- default
ports:
- "5055:5055"
expose:
- "5055"
volumes:
- ./data:/app/config
- ./config/settings.json:/app/config/settings.json