Gallery stripped from excerpt of post

Your theme most likely uses the_excerpt() function. This function takes the post content and removes all formatting and shortcodes (including the shortcode), and truncates it to a certain amount of characters.

What you could try is removing this function, and replacing it with the_content(), which still respects the <!-- more --> tag in posts, but correctly displays shortcodes and HTML formatting.