File tree Expand file tree Collapse file tree 6 files changed +29
-1
lines changed Expand file tree Collapse file tree 6 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/dotnet/core/sdk:2.2
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ FROM golang:1.12.5-alpine3.9 as builder
Original file line number Diff line number Diff line change 1+ FROM node:12.4.0-alpine
Original file line number Diff line number Diff line change 1+ FROM python:3.7.3-alpine3.9
You can’t perform that action at this time.
0 commit comments