mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-06-17 16:57:13 +02:00
tcp-port opt to expose Docker API to a local TCP address
This commit is contained in:
@ -185,6 +185,27 @@ describe('getInputs', () => {
|
||||
rootless: true,
|
||||
} as context.Inputs
|
||||
],
|
||||
[
|
||||
9,
|
||||
new Map<string, string>([
|
||||
['version', 'v24.0.8'],
|
||||
['tcp-port', '2378'],
|
||||
['set-host', 'false'],
|
||||
['rootless', 'false'],
|
||||
]),
|
||||
{
|
||||
source: {
|
||||
type: 'archive',
|
||||
version: 'v24.0.8',
|
||||
channel: 'stable'
|
||||
},
|
||||
context: '',
|
||||
daemonConfig: '',
|
||||
tcpPort: 2378,
|
||||
rootless: false,
|
||||
setHost: false
|
||||
} as context.Inputs
|
||||
],
|
||||
])(
|
||||
'[%d] given %p as inputs, returns %p',
|
||||
async (num: number, inputs: Map<string, string>, expected: context.Inputs) => {
|
||||
|
Reference in New Issue
Block a user