Skip to content

Commit

Permalink
fix(extension): change ports to reduce conflicts [EE-3211] (#7596)
Browse files Browse the repository at this point in the history
  • Loading branch information
itsconquest committed Sep 12, 2022
1 parent fdfebcf commit dd1662c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<script>
if (window.origin == 'file://') {
// we are loading the app from a local file as in docker extension
document.getElementById('base').href = 'http://localhost:9000/';
document.getElementById('base').href = 'http://localhost:49000/';

window.ddExtension = true;
} else {
Expand Down
4 changes: 2 additions & 2 deletions build/docker-extension/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock:ro
- portainer_data:/data
ports:
- 127.0.0.1:9000:9000
- 127.0.0.1:9443:9443
- 127.0.0.1:49000:9000
- 127.0.0.1:49443:9443
volumes:
portainer_data:

0 comments on commit dd1662c

Please sign in to comment.