aboutsummaryrefslogtreecommitdiffstats
path: root/tests/1-node.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/1-node.yml')
-rw-r--r--tests/1-node.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/1-node.yml b/tests/1-node.yml
new file mode 100644
index 000000000..9e496d7b8
--- /dev/null
+++ b/tests/1-node.yml
@@ -0,0 +1,32 @@
+version: "3"
+services:
+ client:
+ build:
+ context: ..
+ dockerfile: ${DOCKERFILE}
+ args:
+ - BASE_IMAGE
+ image: hicn-base
+ container_name: forwarder
+ working_dir: /workspace
+ volumes:
+ - ..:/workspace:z
+ networks:
+ the-network:
+ ipv4_address: ${TOPOLOGY_1_NODE_IP_ADDRESS}
+ entrypoint: [/bin/bash, -ex, -c]
+ command:
+ - |
+ if [ -d /workspace/build-dev ]; then
+ sudo ninja -C /workspace/build-dev install
+ fi
+
+ sudo hicn-light-daemon --log-file /tmp/lite_client.log
+
+networks:
+ the-network:
+ driver: bridge
+ ipam:
+ config:
+ - subnet: ${TOPOLOGY_1_NODE_IP_NETWORK}
+ gateway: ${TOPOLOGY_1_NODE_IP_GATEWAY}