This commit is contained in:
Marcel Dempers 2019-06-16 20:39:43 +10:00
parent 0fced5f8e2
commit b6a61b9745
6 changed files with 29 additions and 1 deletions

View File

@ -1 +1,7 @@
# docker-development-youtube-series
# docker-development-youtube-series
Hi!
This is the source code for the YouTube series covering docker-based development workflows.
Part #1 https://youtu.be/wyjNpxLRmLg

1
c#/dockerfile Normal file
View File

@ -0,0 +1 @@
FROM mcr.microsoft.com/dotnet/core/sdk:2.2

18
docker-compose.yaml Normal file
View File

@ -0,0 +1,18 @@
version: "3"
services:
csharp:
container_name: csharp
image: aimvector/csharp:1.0.0
build: ./c#
golang:
container_name: golang
image: aimvector/golang:1.0.0
build: ./golang
nodejs:
container_name: nodejs
image: aimvector/nodejs:1.0.0
build: ./nodejs
python:
container_name: python
image: aimvector/python:1.0.0
build: ./python

1
golang/dockerfile Normal file
View File

@ -0,0 +1 @@
FROM golang:1.12.5-alpine3.9 as builder

1
nodejs/dockerfile Normal file
View File

@ -0,0 +1 @@
FROM node:12.4.0-alpine

1
python/dockerfile Normal file
View File

@ -0,0 +1 @@
FROM python:3.7.3-alpine3.9