Skip to content

Commit b6a61b9

Browse files
part 1
1 parent 0fced5f commit b6a61b9

File tree

6 files changed

+29
-1
lines changed

6 files changed

+29
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
# docker-development-youtube-series
1+
# docker-development-youtube-series
2+
3+
Hi!
4+
5+
This is the source code for the YouTube series covering docker-based development workflows.
6+
7+
Part #1 https://youtu.be/wyjNpxLRmLg

c#/dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM mcr.microsoft.com/dotnet/core/sdk:2.2

docker-compose.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: "3"
2+
services:
3+
csharp:
4+
container_name: csharp
5+
image: aimvector/csharp:1.0.0
6+
build: ./c#
7+
golang:
8+
container_name: golang
9+
image: aimvector/golang:1.0.0
10+
build: ./golang
11+
nodejs:
12+
container_name: nodejs
13+
image: aimvector/nodejs:1.0.0
14+
build: ./nodejs
15+
python:
16+
container_name: python
17+
image: aimvector/python:1.0.0
18+
build: ./python

golang/dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM golang:1.12.5-alpine3.9 as builder

nodejs/dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM node:12.4.0-alpine

python/dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM python:3.7.3-alpine3.9

0 commit comments

Comments
 (0)