refactor(docker): standardize docker network name to 'frontend'

- Replace 'traefik-network' with 'frontend' in docker-compose.traefik.yml
- Replace 'traefik-network' with 'frontend' in switch-to-traefik.sh
- Replace 'your-main-network' with 'frontend' in DOCKER_DEPLOYMENT.md examples
- Ensure consistency across Docker configuration and documentation

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
zly
2026-01-14 14:39:57 +08:00
parent 9835b6e341
commit 65ba1d938d
3 changed files with 10 additions and 11 deletions

View File

@@ -175,10 +175,10 @@ services:
- "traefik.http.routers.bttoxin-backend.entrypoints=websecure"
# ... 其他 label
networks:
- your-main-network
- frontend
networks:
your-main-network:
frontend:
external: true
```