Skip to content

Read Only Docker Container

Chaunte W. Lacewell edited this page Aug 26, 2022 · 1 revision

Read-Only Docker Image

To run VDMS in a read-only container, first create a volume
$ docker volume create vdms_db
Now create a VDMS container that uses this volume as the storage location for db's
$ docker run -d -p 55555:55555 --read-only --mount source=vdms_db,destination=/vdms/build/db vdms:latest \

Clone this wiki locally