Update home authored by Lars Florian Meiendresch's avatar Lars Florian Meiendresch
...@@ -59,12 +59,24 @@ The developer guide is a comprehensive resource for developers who want to contr ...@@ -59,12 +59,24 @@ The developer guide is a comprehensive resource for developers who want to contr
### Installation and Docker Container ### Installation and Docker Container
After running the `docker-compose up -d` command on your server, multiple docker containers are pulled, created, and started. After running `docker compose up -d`, the server is now running the following containers by default:
| Container Name | Description | Port |
|:------------------|---------------------------------------------|-------:|
| `19sq-nginx` | nginx Web Server | `5001` |
| `19sq-flask` | Application | `8080` |
| `19sq-mariadb` | Database | `3306` |
| `19sq-ladsh` | Learning Analytics Dashboard | `2000` |
#### Next Steps: Routing Traffic
To make your application accessible, you'll want to route external traffic to the `19sq-nginx` container on port `5001`. [Nginx Proxy Manager](https://nginxproxymanager.com/) simplifies the setup of a reverse proxy. It provides an intuitive interface for:
For more details about installation and getting started, please refer to the project's [README](https://git.rwth-aachen.de/medialab/interactive360vr/-/blob/main/README.md) file. * **Redirecting traffic:** Easily point domain names or subpaths to your container.
* **Adding SSL certificates:** Secure your application with Let's Encrypt integration.
* **Managing multiple applications:** Centralize configuration for all your containerized services.
For details about the development server, please refer to the project's [README](https://git.rwth-aachen.de/medialab/interactive360vr/-/blob/main/README.md) file.
### Contribution Guidelines ### Contribution Guidelines
... ...
......