mirror of
https://github.com/containers/podman-compose.git
synced 2024-12-13 10:10:51 +01:00
16 lines
260 B
YAML
16 lines
260 B
YAML
|
version: '3'
|
||
|
|
||
|
# --ipam-driver must not be pass when driver is "default"
|
||
|
networks:
|
||
|
ipam_test_default:
|
||
|
ipam:
|
||
|
driver: default
|
||
|
config:
|
||
|
- subnet: 172.19.0.0/24
|
||
|
|
||
|
services:
|
||
|
testipam:
|
||
|
image: busybox
|
||
|
command: ["echo", "ipamtest"]
|
||
|
|