diff --git a/docker/README.md b/docker/README.md --- a/docker/README.md +++ b/docker/README.md @@ -79,7 +79,7 @@ ``` Once all containers are running, you can use the web interface by opening -http://localhost:5080/ in your web browser. +http://localhost:5081/ in your web browser. At this point, the archive is empty and needs to be filled with some content. To do so, you can create tasks that will scrape a forge. For example, to inject @@ -188,7 +188,7 @@ - amqp: 5072 - kafka: 5092 -- nginx: 5080 +- nginx: 5081 And for SWH services: @@ -352,8 +352,8 @@ ### Monitoring activity You can monitor the workers activity by connecting to the RabbitMQ console on -`http://localhost:5080/rabbitmq` or the grafana dashboard on -`http://localhost:5080/grafana`. +`http://localhost:5081/rabbitmq` or the grafana dashboard on +`http://localhost:5081/grafana`. If you cannot see any task being executed, check the logs of the `swh-scheduler-runner` service (here is a failure example due to the diff --git a/docker/conf/grafana/provisioning/datasources/prometheus.yaml b/docker/conf/grafana/provisioning/datasources/prometheus.yaml --- a/docker/conf/grafana/provisioning/datasources/prometheus.yaml +++ b/docker/conf/grafana/provisioning/datasources/prometheus.yaml @@ -4,7 +4,7 @@ datasources: - name: Prometheus type: prometheus - url: http://localhost:5080/prometheus + url: http://localhost:5081/prometheus access: direct isDefault: true version: 1 diff --git a/docker/conf/nginx.conf b/docker/conf/nginx.conf --- a/docker/conf/nginx.conf +++ b/docker/conf/nginx.conf @@ -21,7 +21,7 @@ server { listen 80 default_server; - # Add a trailing slash to top level requests (e.g. http://localhost:5080/flower) + # Add a trailing slash to top level requests (e.g. http://localhost:5081/flower) rewrite ^/([^/]+)$ /$1/ permanent; diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -70,7 +70,7 @@ depends_on: - prometheus environment: - GF_SERVER_ROOT_URL: http://localhost:5080/grafana + GF_SERVER_ROOT_URL: http://localhost:5081/grafana volumes: - "./conf/grafana/provisioning:/etc/grafana/provisioning:ro" - "./conf/grafana/dashboards:/var/lib/grafana/dashboards"