feat(deploy): Introduce Docker Compose configuration for multi-world deployment

- Separate web service into two containers, one for main process and one for gunicorn
- Update container configurations for improved security and maintainability
- Remove unused volumes and network configurations
This commit is contained in:
Adrian Priestley
2025-01-01 16:14:35 -03:30
committed by Adrian Priestley
parent d80d297d97
commit b07a0a7c28
3 changed files with 40 additions and 18 deletions

View File

@@ -28,7 +28,7 @@ http {
# server unix:/tmp/gunicorn.sock fail_timeout=0;
# for a TCP configuration
server host.docker.internal:8000 fail_timeout=0;
server web:8000 fail_timeout=0;
}
server {