mirror of
https://github.com/containers/podman.git
synced 2025-10-17 19:24:04 +08:00
Fixes docker-compose cannot set static ip when use ipam
Signed-off-by: zhangguanzhang <zhangguanzhang@qq.com>
This commit is contained in:
17
test/compose/ipam_set_ip/docker-compose.yml
Normal file
17
test/compose/ipam_set_ip/docker-compose.yml
Normal file
@ -0,0 +1,17 @@
|
||||
version: "3.2"
|
||||
services:
|
||||
test:
|
||||
image: alpine
|
||||
networks:
|
||||
net1:
|
||||
ipv4_address: 10.123.0.253
|
||||
tty: true
|
||||
command: ["top"]
|
||||
|
||||
networks:
|
||||
net1:
|
||||
driver: bridge
|
||||
ipam:
|
||||
driver: default
|
||||
config:
|
||||
- subnet: 10.123.0.0/24
|
4
test/compose/ipam_set_ip/tests.sh
Normal file
4
test/compose/ipam_set_ip/tests.sh
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- bash -*-
|
||||
|
||||
podman container inspect ipam_set_ip_test_1 --format '{{ .NetworkSettings.Networks.ipam_set_ip_net1.IPAddress }}'
|
||||
like "$output" "10.123.0.253" "$testname : ip address is set"
|
Reference in New Issue
Block a user