mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59: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
|
@ -29,8 +29,8 @@ describe('startContainerController', function () {
|
|||
Ports: [
|
||||
{
|
||||
IP: '0.0.0.0',
|
||||
PrivatePort: 9000,
|
||||
PublicPort: 9000,
|
||||
PrivatePort: 9443,
|
||||
PublicPort: 9443,
|
||||
Type: 'tcp',
|
||||
},
|
||||
],
|
||||
|
@ -46,11 +46,11 @@ describe('startContainerController', function () {
|
|||
var expectedBody = {
|
||||
name: 'container-name',
|
||||
ExposedPorts: {
|
||||
'9000/tcp': {},
|
||||
'9443/tcp': {},
|
||||
},
|
||||
HostConfig: {
|
||||
PortBindings: {
|
||||
'9000/tcp': [
|
||||
'9443/tcp': [
|
||||
{
|
||||
HostPort: '9999',
|
||||
HostIp: '10.20.10.15',
|
||||
|
@ -76,7 +76,7 @@ describe('startContainerController', function () {
|
|||
{
|
||||
ip: '10.20.10.15',
|
||||
extPort: '9999',
|
||||
intPort: '9000',
|
||||
intPort: '9443',
|
||||
},
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue