Change the Webapp Port
| Stop your server before making these changes. The container needs to be recreated for the port change to take effect. |
The default URL for the repository is http://hostname:8080/app/portal/tab/report, where 8080 is the default port number. To change the webapp port, modify the ports setting in the docker-compose.yaml file, as shown below.
Example (YAML snippet): Assign port 80
server:
image: "${STYLEBI_DOCKER_IMAGE:-ghcr.io/inetsoft-technology/stylebi-community:latest}"
restart: unless-stopped
ports:
- "80:8080"
| A sample docker-compose.yaml file can be found in the Github community-examples repository. |