# smartnic-dpdk-docker **Repository Path**: mirrors_esnet/smartnic-dpdk-docker ## Basic Information - **Project Name**: smartnic-dpdk-docker - **Description**: Docker container with dpdk + xilinx qdma + pktgen-dpdk for use in high speed test setups - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-13 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Copyright Notice ESnet SmartNIC Copyright (c) 2022, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy), 12574861 Canada Inc., Malleable Networks Inc., and Apical Networks, Inc. All rights reserved. If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Intellectual Property Office at IPO@lbl.gov. NOTICE. This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit others to do so. # Support The ESnet SmartNIC platform is made available in the hope that it will be useful to the networking community. Users should note that it is made available on an "as-is" basis, and should not expect any technical support or other assistance with building or using this software. For more information, please refer to the LICENSE.md file in each of the source code repositories. The developers of the ESnet SmartNIC platform can be reached by email at smartnic@es.net. # Deprecation Notice This repository is no longer being actively maintained. **No new features or security updates will be provided in this repository.** This read-only repository is provided for users who are stuck on older versions of the ESnet SmartNIC platform and who are unable to upgrade. As of 17 Nov 2025, the content from this repository has been absorbed directly into the `esnet-smartnic-fw` repository and will be maintained in that new location from now on. Ref: https://github.com/esnet/esnet-smartnic-fw/commit/cf5725f645d8ca9f6d47b3cf6b55c2b5d7a2890b # Instructions to build the **deprecated, unmaintained** content of this repo Installing git submodules ----------------------- ``` git submodule update --init --recursive ``` Building the smartnic-dpdk-docker container ------------------------------------------- ``` docker build --pull -t smartnic-dpdk-docker:${USER}-dev . docker image ls ``` You should see an image called `smartnic-dpdk-docker` with tag `${USER}-dev`. Building in isolated environments --------------------------------- These steps are **only** relevant if your image build environment has limited or zero access to the Internet. Do **not** run these commands if the simple build steps in the previous section work for you. This example shows how to override locations of various resources needed in the build: ``` docker build --pull -t smartnic-dpdk-docker:${USER}-dev \ --build-arg DOCKERHUB_PROXY="wharf.es.net/dockerhub-proxy/" \ --build-arg DPDK_BASE_URL="https://dispense.es.net/dpdk" \ --build-arg PKTGEN_BASE_URL="https://dispense.es.net/dpdk" . ``` `DOCKERHUB_PROXY`: Prefix server/path to use when pulling public images. **Note** the trailing `/` on this definition. `DPDK_BASE_URL`: Alternate base URL to use when fetching the DPDK tar file. Useful if you choose to locally host the file. `PKTGEN_BASE_URL`: Alternate base URL to use when fetching the pktgen tar file. Useful if you choose to locally host the file.