Hi @hulk101
To mount the partitions, you need to create the directory you want to have in your case "/testapp" and "/testcontainer"
mkdir /testapp
mkdir /testcontainer
mount -o rw /dev/mmcblk0p3 /testapp
(rw means read-write option)
mount -o ro /dev/mmcblk0p4 /testcontainer
(ro means read-only option)
these commands are assuming that the partition 3 is for testapp and partition 4 for testcontainer it will depends on your implementation.
Let me know if you have more questions