in ghost the file post.hbs rendering de {{content}} whit class .kg-card-markdown
you can create this function for js add class in all image in post content
function imageResponsive() {
$('.kg-card-markdown').each(function(){
$('img').addClass('img-responsive');
});
}