Hey, there. I'm trying to do some basic networking with dagger.
I have two containers that need to be set up with networking between them. I couldn't see any networking examples in the snippets section of the cookbook.
My docker-compose.yml file looks something like this:
version: "3.0"
services:
boudi:
build: .
container_name: build-your-own-internet-002-boudi
image: build-your-own-internet-002-boudi
hostname: boudi
networks:
caternet:
ipv4_address: 10.1.1.3
cap_add:
- NET_ADMIN
pippin:
build: .
container_name: build-your-own-internet-002-pippin
image: build-your-own-internet-002-pippin
hostname: pippin
networks:
caternet:
ipv4_address: 10.1.1.2
cap_add:
- NET_ADMIN
networks:
caternet:
name: build-your-own-internet-002-caternet
driver: bridge
ipam:
driver: default
config:
- subnet: 10.1.1.0/24
As you can see, I'm trying to build a network that connects these two containers. Is this possible? Been hunting around the dagger documentation without much success.
