diff --git a/Program_Licenses.md b/Program_Licenses.md
index fd5fbcec7..3f9e65c1c 100644
--- a/Program_Licenses.md
+++ b/Program_Licenses.md
@@ -166,6 +166,7 @@ The licenses of the open-source software that is contained in these Docker image
| Trycycler | GNU GPLv3 | https://github.com/rrwick/Trycycler/blob/master/LICENSE |
| Unicycler | GNU GPLv3 | https://github.com/rrwick/Unicycler/blob/master/LICENSE |
| VADR | Public Domain | https://github.com/nawrockie/vadr/blob/master/LICENSE |
+| Verkko | Public Domain | https://github.com/marbl/verkko/blob/master/README.licenses |
| VIBRANT | GNU GPLv3 | https://github.com/AnantharamanLab/VIBRANT/blob/master/LICENSE |
| VIGOR4 | GNU GPLv3 | https://github.com/JCVenterInstitute/VIGOR4/blob/master/LICENSE.txt |
| VirSorter2 | GNU GPLv2 | https://github.com/jiarong/VirSorter2/blob/master/LICENSE |
diff --git a/README.md b/README.md
index 665461806..19fadb0f6 100644
--- a/README.md
+++ b/README.md
@@ -272,6 +272,7 @@ To learn more about the docker pull rate limits and the open source software pro
| [Trycycler](https://hub.docker.com/r/staphb/trycycler/)
[](https://hub.docker.com/r/staphb/trycycler) |
- 0.3.1
- 0.3.2
- 0.3.3
- 0.5.0
- 0.5.3
- 0.5.4
| https://github.com/rrwick/Trycycler |
| [Unicycler](https://hub.docker.com/r/staphb/unicycler/)
[](https://hub.docker.com/r/staphb/unicycler) | | https://github.com/rrwick/Unicycler |
| [VADR](https://hub.docker.com/r/staphb/vadr/)
[](https://hub.docker.com/r/staphb/vadr) | - 1.1
- 1.1.2
- 1.1.3
- 1.2
- 1.2.1
- 1.3 & SARS-CoV-2 models 1.3-1
- 1.3 & SARS-CoV-2 models 1.3-2
- 1.4 & SARS-CoV-2 models 1.3-2
- 1.4.1 & SARS-CoV-2 models 1.3-2
- 1.4.2 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1
- 1.5 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1
- 1.5.1 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2
- 1.6.3 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2, Influenza v1.6.3-1
| https://github.com/nawrockie/vadr (archived, now redirects to ncbi/vadr) https://github.com/ncbi/vadr |
+| [Verkko](https://hub.docker.com/r/staphb/verkko/)
[](https://hub.docker.com/r/staphb/verkko) | | https://github.com/marbl/verkko |
| [VIBRANT](https://hub.docker.com/r/staphb/vibrant/)
[](https://hub.docker.com/r/staphb/vibrant) | | https://github.com/AnantharamanLab/VIBRANT |
| [VIGOR4](https://hub.docker.com/r/staphb/vigor4/)
[](https://hub.docker.com/r/staphb/vigor4) | | https://github.com/JCVenterInstitute/VIGOR4 |
| [VirSorter2](https://hub.docker.com/r/staphb/virsorter2/)
[](https://hub.docker.com/r/staphb/virsorter2/) | | https://github.com/jiarong/VirSorter2 |
diff --git a/verkko/2.0/Dockerfile b/verkko/2.0/Dockerfile
new file mode 100644
index 000000000..7ce83ab3d
--- /dev/null
+++ b/verkko/2.0/Dockerfile
@@ -0,0 +1,50 @@
+FROM mambaorg/micromamba:1.5.6 as app
+
+ARG VERKKO_VER="2.0"
+
+USER root
+
+WORKDIR /
+
+LABEL base.image="mambaorg/micromamba:1.5.6"
+LABEL dockerfile.version="1"
+LABEL software="Verkko"
+LABEL software.version="${VERKKO_VER}"
+LABEL description="Verkko is a hybrid genome assembly pipeline developed for telomere-to-telomere assembly of PacBio HiFi or Oxford Nanopore Duplex and Oxford Nanopore simplex reads."
+LABEL website="https://github.com/marbl/verkko"
+LABEL license="https://github.com/marbl/verkko/blob/master/README.licenses"
+LABEL maintainer="Kutluhan Incekara"
+LABEL maintainer.email="kutluhan.incekara@ct.gov"
+
+RUN apt-get update && apt-get install --no-install-recommends -y \
+ procps \
+ curl && \
+ apt-get autoclean && rm -rf /var/lib/apt/lists/*
+
+RUN micromamba install --name base -c conda-forge -c bioconda verkko=${VERKKO_VER} && \
+ micromamba clean -a -y
+
+ENV PATH="/opt/conda/bin/:${PATH}" \
+ LC_ALL=C.UTF-8
+
+CMD [ "verkko", "--help" ]
+
+WORKDIR /data
+
+## Test ##
+FROM app as test
+
+ENV ENV_NAME="base"
+ARG MAMBA_DOCKERFILE_ACTIVATE=1
+
+RUN apt-get update && apt-get install --no-install-recommends -y curl
+
+# test data
+RUN curl -L https://obj.umiacs.umd.edu/sergek/shared/ecoli_hifi_subset24x.fastq.gz -o hifi.fastq.gz &&\
+ curl -L https://obj.umiacs.umd.edu/sergek/shared/ecoli_ont_subset50x.fastq.gz -o ont.fastq.gz
+
+# verkko test run
+RUN verkko -d asm --hifi ./hifi.fastq.gz --nano ./ont.fastq.gz &&\
+ head asm/assembly.hifi-coverage.csv &&\
+ head -c 1000 asm/assembly.fasta
+
diff --git a/verkko/2.0/README.md b/verkko/2.0/README.md
new file mode 100644
index 000000000..ee3b2e499
--- /dev/null
+++ b/verkko/2.0/README.md
@@ -0,0 +1,21 @@
+# Verkko container
+
+Main tool: [verkko](https://github.com/marbl/verkko)
+
+Code repository: https://github.com/marbl/verkko
+
+Basic information on how to use this tool:
+- executable: verkko
+- help: --help
+- version: --version
+- description: Verkko is a hybrid genome assembly pipeline developed for telomere-to-telomere assembly of PacBio HiFi or Oxford Nanopore Duplex and Oxford Nanopore simplex reads.
+
+Full documentation: https://github.com/marbl/verkko
+
+## Example Usage
+
+```bash
+verkko -d --hifi [--nano ]
+```
+
+
\ No newline at end of file