mirror of
https://github.com/danbulant/docker-compose
synced 2026-05-21 21:38:58 +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 => {
|
||||
beforeEach(async (): Promise<void> => {
|
||||
await compose.down({
|
||||
cwd: path.join(__dirname),
|
||||
log: logOutput,
|
||||
config: 'docker-compose-build.yml'
|
||||
})
|
||||
})
|
||||
beforeEach(
|
||||
async (): Promise<void> => {
|
||||
await compose.down({
|
||||
cwd: path.join(__dirname),
|
||||
log: logOutput,
|
||||
config: 'docker-compose-build.yml'
|
||||
})
|
||||
}
|
||||
)
|
||||
|
||||
afterEach(async (): Promise<void> => {
|
||||
await compose.down({
|
||||
cwd: path.join(__dirname),
|
||||
log: logOutput,
|
||||
config: 'docker-compose-build.yml'
|
||||
})
|
||||
})
|
||||
afterEach(
|
||||
async (): Promise<void> => {
|
||||
await compose.down({
|
||||
cwd: path.join(__dirname),
|
||||
log: logOutput,
|
||||
config: 'docker-compose-build.yml'
|
||||
})
|
||||
}
|
||||
)
|
||||
|
||||
test('ensure container gets started with --build option', async (): Promise<void> => {
|
||||
await compose.upAll({
|
||||
|
|
|
|||
Loading…
Reference in a new issue