mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
part 1
This commit is contained in:
parent
0fced5f8e2
commit
b6a61b9745
@ -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
1
c#/dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/core/sdk:2.2
|
18
docker-compose.yaml
Normal file
18
docker-compose.yaml
Normal 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
1
golang/dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
FROM golang:1.12.5-alpine3.9 as builder
|
1
nodejs/dockerfile
Normal file
1
nodejs/dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
FROM node:12.4.0-alpine
|
1
python/dockerfile
Normal file
1
python/dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
FROM python:3.7.3-alpine3.9
|
Loading…
x
Reference in New Issue
Block a user