Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Add livecycle docker compose webinar #781

Merged
merged 1 commit into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added src/assets/webinars/livecycle-docker-compose.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 37 additions & 0 deletions src/content/Webinars/LivecycleWebinar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import Poster from '@/assets/webinars/livecycle-docker-compose.png';

import {
IndividualWebinarCompletedPageHeader,
IndividualWebinarPageFAQ,
} from './IndividualWebinarPageContent';

const LivecycleWebinar = {
header: IndividualWebinarCompletedPageHeader,
name: 'Collaboration and Team Feedback with Docker Compose',
description:
'A walkthrough of how to use Docker Compose to collaborate with your team and get feedback from your stakeholders',
poster: Poster,
// videoUrl: 'https://www.youtube.com/embed/',
takeaways: [
'What is Docker Compose and why is it important for developers?',
'What are the challenges of using Docker Compose in a team environment?',
'How can we use Preevy on top of Compose app to unlock collaboration and the feedback cycle?',
'How to perform Open Source Maintenance using Preevy with Actions to automate Preevy URL generation?',
'Show the private beta/preview version of the Docker extension we are building to extend local environments to include others who want to give feedback',
'How the global mission at Livevcycle will provide developers multiple ways to get feedback at any point of the SDLC - SaaS, SDK, Preevy, and Extension?',
],
time: '14 September 2023 11:30:00 GMT',
speakers: [
{
name: 'Pradumna Saraf',
description: 'DevRel @get_livecycle',
twitter: 'pradumna_saraf',
img: 'https://pbs.twimg.com/profile_images/1591119953511317504/6B1Qvb11_400x400.jpg',
Susmita-Dey marked this conversation as resolved.
Show resolved Hide resolved
},
],
register: 'LivecycleWebinar',
slug: 'team-feedback-with-docker-compose',
faq: IndividualWebinarPageFAQ,
};

export default LivecycleWebinar;
Susmita-Dey marked this conversation as resolved.
Show resolved Hide resolved
9 changes: 9 additions & 0 deletions src/content/Webinars/index.content.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import BiteSizeOtterize from '@/content/Webinars/BiteSizeOtterize';
import CostOptimizationWebinar from '@/content/Webinars/CostOptimizationWebinar';
import { IndividualWebinarPageFAQ } from '@/content/Webinars/IndividualWebinarPageContent';
import KafkaWebinar from '@/content/Webinars/KafkaWebinar';
import LivecycleWebinar from '@/content/Webinars/LivecycleWebinar';
Susmita-Dey marked this conversation as resolved.
Show resolved Hide resolved
import SimplifiedDeploymentWebinar from '@/content/Webinars/SimplifiedDeployment';
import ZeroDowmtime from '@/content/Webinars/ZeroDowntimeKubeslice';

Expand Down Expand Up @@ -112,4 +113,12 @@ export const webinar = [
slug: CostOptimizationWebinar.slug,
details: CostOptimizationWebinar,
},
{
img: LivecycleWebinar.poster,
title: LivecycleWebinar.name,
description: LivecycleWebinar.description,
time: LivecycleWebinar.time,
slug: LivecycleWebinar.slug,
details: LivecycleWebinar,
},
];