Skip to content

Instantly share code, notes, and snippets.

View dineshPallapa's full-sized avatar

DineshPallapa dineshPallapa

View GitHub Profile
class Profile extends React.Component{
render() {
let hobbies = this.props.hobbies.map(hobbie => {
return(
<li>{hobbie}</li>
)
})
return(
<div>
<h3>{this.props.name}</h3>
@dineshPallapa
dineshPallapa / DevOps related courses with links
Created September 12, 2019 06:05 — forked from sd031/DevOps related courses with links
GCP, AWS Certification, DevOps / DevSecOps courses link that I did go through
@dineshPallapa
dineshPallapa / app.DockerFile
Created May 26, 2020 10:07 — forked from satendra02/app.DockerFile
docker+rails+puma+nginx+postgres (Production ready)
FROM ruby:2.3.1
# Install dependencies
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
# Set an environment variable where the Rails app is installed to inside of Docker image:
ENV RAILS_ROOT /var/www/app_name
RUN mkdir -p $RAILS_ROOT
# Set working directory, where the commands will be ran: