mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-24 12:35:32 +00:00
fix: fix mapping ipv6-based port mappings
This commit is contained in:
parent
dbdb9008f2
commit
6dec0c6bb6
1 changed files with 18 additions and 14 deletions
|
|
@ -94,21 +94,25 @@ test('ensure exit code is returned correctly', async (): Promise<void> => {
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('starts containers properly with --build and --timeout options', (): void => {
|
describe('starts containers properly with --build and --timeout options', (): void => {
|
||||||
beforeEach(async (): Promise<void> => {
|
beforeEach(
|
||||||
|
async (): Promise<void> => {
|
||||||
await compose.down({
|
await compose.down({
|
||||||
cwd: path.join(__dirname),
|
cwd: path.join(__dirname),
|
||||||
log: logOutput,
|
log: logOutput,
|
||||||
config: 'docker-compose-build.yml'
|
config: 'docker-compose-build.yml'
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
)
|
||||||
|
|
||||||
afterEach(async (): Promise<void> => {
|
afterEach(
|
||||||
|
async (): Promise<void> => {
|
||||||
await compose.down({
|
await compose.down({
|
||||||
cwd: path.join(__dirname),
|
cwd: path.join(__dirname),
|
||||||
log: logOutput,
|
log: logOutput,
|
||||||
config: 'docker-compose-build.yml'
|
config: 'docker-compose-build.yml'
|
||||||
})
|
})
|
||||||
})
|
}
|
||||||
|
)
|
||||||
|
|
||||||
test('ensure container gets started with --build option', async (): Promise<void> => {
|
test('ensure container gets started with --build option', async (): Promise<void> => {
|
||||||
await compose.upAll({
|
await compose.upAll({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue