Skip to content

Commit

Permalink
Remove management interface
Browse files Browse the repository at this point in the history
Local ports are remapped too.
  • Loading branch information
marein committed Oct 9, 2022
1 parent 152c3d3 commit 6bda5b8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,8 @@ Following urls are accessible after the project is successfully started.
| [http://localhost/](http://localhost/) | The application. |
| [http://localhost:8081/](http://localhost:8081/) | MySQL management interface. |
| [http://localhost:8082/](http://localhost:8082/) | Redis management interface. |
| [http://localhost:8083/](http://localhost:8083/) | RabbitMq management interface. |
| [http://localhost:8084/](http://localhost:8084/) | Traefik management interface. |
| [http://localhost:8085/](http://localhost:8085/) | Grafana management interface. |
| [http://localhost:8083/](http://localhost:8083/) | Traefik management interface. |
| [http://localhost:8084/](http://localhost:8084/) | Grafana management interface. |

### Production

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
GF_AUTH_ANONYMOUS_ENABLED: 1
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
ports:
- "8085:3000"
- "8084:3000"
prometheus:
image: marein/php-gaming-website:prometheus
restart: on-failure
Expand Down
6 changes: 2 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
- --providers.docker.exposedbydefault=false
ports:
- "80:80"
- "8084:8080"
- "8083:8080"
depends_on:
- nchan
- service-js-polyfill
Expand All @@ -51,7 +51,7 @@ services:
GF_AUTH_ANONYMOUS_ENABLED: 1
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
ports:
- "8085:3000"
- "8084:3000"
volumes:
- ./docker/grafana/provisioning:/etc/grafana/provisioning
- ./docker/grafana/dashboards:/var/lib/grafana/dashboards
Expand Down Expand Up @@ -94,8 +94,6 @@ services:
context: .
dockerfile: ./docker/rabbit-mq/Dockerfile
hostname: rabbit-mq
ports:
- "8083:15672"
volumes:
- rabbit-mq:/var/lib/rabbitmq/mnesia
labels:
Expand Down
2 changes: 1 addition & 1 deletion docker/rabbit-mq/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM rabbitmq:3.8-management-alpine
FROM rabbitmq:3.8-alpine

0 comments on commit 6bda5b8

Please sign in to comment.