mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
- setting port 9443 as primary (#5610)
- updated markdown files - updated dockerfiles - updated test files - updated webpack
This commit is contained in:
parent
1633eceed5
commit
c7760b7d48
11 changed files with 23 additions and 22 deletions
16
.github/ISSUE_TEMPLATE.md
vendored
16
.github/ISSUE_TEMPLATE.md
vendored
|
@ -28,17 +28,15 @@ Briefly describe the problem you are having in a few paragraphs.
|
||||||
|
|
||||||
**Steps to reproduce the issue:**
|
**Steps to reproduce the issue:**
|
||||||
|
|
||||||
1.
|
1. 2. 3.
|
||||||
2.
|
|
||||||
3.
|
|
||||||
|
|
||||||
Any other info e.g. Why do you consider this to be a bug? What did you expect to happen instead?
|
Any other info e.g. Why do you consider this to be a bug? What did you expect to happen instead?
|
||||||
|
|
||||||
**Technical details:**
|
**Technical details:**
|
||||||
|
|
||||||
* Portainer version:
|
- Portainer version:
|
||||||
* Target Docker version (the host/cluster you manage):
|
- Target Docker version (the host/cluster you manage):
|
||||||
* Platform (windows/linux):
|
- Platform (windows/linux):
|
||||||
* Command used to start Portainer (`docker run -p 9000:9000 portainer/portainer`):
|
- Command used to start Portainer (`docker run -p 9443:9443 portainer/portainer`):
|
||||||
* Target Swarm version (if applicable):
|
- Target Swarm version (if applicable):
|
||||||
* Browser:
|
- Browser:
|
||||||
|
|
3
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
3
.github/ISSUE_TEMPLATE/Bug_report.md
vendored
|
@ -4,7 +4,6 @@ about: Create a bug report
|
||||||
title: ''
|
title: ''
|
||||||
labels: bug/need-confirmation, kind/bug
|
labels: bug/need-confirmation, kind/bug
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
@ -46,7 +45,7 @@ You can see how [here](https://documentation.portainer.io/archive/1.23.2/faq/#ho
|
||||||
- Docker version (managed by Portainer):
|
- Docker version (managed by Portainer):
|
||||||
- Kubernetes version (managed by Portainer):
|
- Kubernetes version (managed by Portainer):
|
||||||
- Platform (windows/linux):
|
- Platform (windows/linux):
|
||||||
- Command used to start Portainer (`docker run -p 9000:9000 portainer/portainer`):
|
- Command used to start Portainer (`docker run -p 9443:9443 portainer/portainer`):
|
||||||
- Browser:
|
- Browser:
|
||||||
- Use Case (delete as appropriate): Using Portainer at Home, Using Portainer in a Commerical setup.
|
- Use Case (delete as appropriate): Using Portainer at Home, Using Portainer in a Commerical setup.
|
||||||
- Have you reviewed our technical documentation and knowledge base? Yes/No
|
- Have you reviewed our technical documentation and knowledge base? Yes/No
|
||||||
|
|
|
@ -91,7 +91,7 @@ Then build and run the project:
|
||||||
$ yarn start
|
$ yarn start
|
||||||
```
|
```
|
||||||
|
|
||||||
Portainer can now be accessed at <http://localhost:9000>.
|
Portainer can now be accessed at <https://localhost:9443>.
|
||||||
|
|
||||||
Find more detailed steps at <https://documentation.portainer.io/contributing/instructions/>.
|
Find more detailed steps at <https://documentation.portainer.io/contributing/instructions/>.
|
||||||
|
|
||||||
|
|
|
@ -130,8 +130,8 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<span class="col-sm-12 text-muted small">
|
<span class="col-sm-12 text-muted small">
|
||||||
<p>
|
<p>
|
||||||
Allows you to create an environment that can be registered with an Edge agent. The Edge agent will initiate the communications with the Portainer instance. All the
|
Allows you to create an environment that can be registered with an Edge agent. The Edge agent will initiate the communications with the Portainer instance. All
|
||||||
required information on how to connect an Edge agent to this environment will be available after environment creation.
|
the required information on how to connect an Edge agent to this environment will be available after environment creation.
|
||||||
</p>
|
</p>
|
||||||
<p> You can read more about the Edge agent in the userguide available <a href="https://downloads.portainer.io/edge_agent_guide.pdf">here.</a> </p>
|
<p> You can read more about the Edge agent in the userguide available <a href="https://downloads.portainer.io/edge_agent_guide.pdf">here.</a> </p>
|
||||||
</span>
|
</span>
|
||||||
|
@ -309,7 +309,7 @@
|
||||||
class="form-control"
|
class="form-control"
|
||||||
name="endpoint_url"
|
name="endpoint_url"
|
||||||
ng-model="formValues.URL"
|
ng-model="formValues.URL"
|
||||||
placeholder="e.g. 10.0.0.10:9000 or portainer.mydomain.com"
|
placeholder="e.g. 10.0.0.10:9443 or portainer.mydomain.com"
|
||||||
required
|
required
|
||||||
data-cy="endpointCreate-portainerServerUrlInput"
|
data-cy="endpointCreate-portainerServerUrlInput"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -6,6 +6,7 @@ VOLUME /data
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
EXPOSE 9443
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
ENTRYPOINT ["/portainer"]
|
ENTRYPOINT ["/portainer"]
|
||||||
|
|
|
@ -6,6 +6,7 @@ VOLUME /data
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
EXPOSE 9443
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
ENTRYPOINT ["/portainer"]
|
ENTRYPOINT ["/portainer"]
|
||||||
|
|
|
@ -2,6 +2,7 @@ FROM ubuntu:20.04
|
||||||
|
|
||||||
# Expose port for the Portainer UI and Edge server
|
# Expose port for the Portainer UI and Edge server
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
EXPOSE 9443
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
WORKDIR /src/portainer
|
WORKDIR /src/portainer
|
||||||
|
|
|
@ -19,6 +19,7 @@ USER ContainerAdministrator
|
||||||
COPY dist /
|
COPY dist /
|
||||||
|
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
EXPOSE 9443
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
ENTRYPOINT ["/portainer.exe"]
|
ENTRYPOINT ["/portainer.exe"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"projectId": "cgz5j5",
|
"projectId": "cgz5j5",
|
||||||
"baseUrl": "http://localhost:9000",
|
"baseUrl": "https://localhost:9443",
|
||||||
"video": false,
|
"video": false,
|
||||||
"experimentalNetworkStubbing": true
|
"experimentalNetworkStubbing": true
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,8 +29,8 @@ describe('startContainerController', function () {
|
||||||
Ports: [
|
Ports: [
|
||||||
{
|
{
|
||||||
IP: '0.0.0.0',
|
IP: '0.0.0.0',
|
||||||
PrivatePort: 9000,
|
PrivatePort: 9443,
|
||||||
PublicPort: 9000,
|
PublicPort: 9443,
|
||||||
Type: 'tcp',
|
Type: 'tcp',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -46,11 +46,11 @@ describe('startContainerController', function () {
|
||||||
var expectedBody = {
|
var expectedBody = {
|
||||||
name: 'container-name',
|
name: 'container-name',
|
||||||
ExposedPorts: {
|
ExposedPorts: {
|
||||||
'9000/tcp': {},
|
'9443/tcp': {},
|
||||||
},
|
},
|
||||||
HostConfig: {
|
HostConfig: {
|
||||||
PortBindings: {
|
PortBindings: {
|
||||||
'9000/tcp': [
|
'9443/tcp': [
|
||||||
{
|
{
|
||||||
HostPort: '9999',
|
HostPort: '9999',
|
||||||
HostIp: '10.20.10.15',
|
HostIp: '10.20.10.15',
|
||||||
|
@ -76,7 +76,7 @@ describe('startContainerController', function () {
|
||||||
{
|
{
|
||||||
ip: '10.20.10.15',
|
ip: '10.20.10.15',
|
||||||
extPort: '9999',
|
extPort: '9999',
|
||||||
intPort: '9000',
|
intPort: '9443',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -70,7 +70,7 @@ module.exports = {
|
||||||
compress: true,
|
compress: true,
|
||||||
port: 8999,
|
port: 8999,
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': 'http://localhost:9000',
|
'/api': 'https://localhost:9443',
|
||||||
},
|
},
|
||||||
open: true,
|
open: true,
|
||||||
writeToDisk: true,
|
writeToDisk: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue