Skip to content

Commit 382db42

Browse files
authored
Merge pull request #17 from etnnth/master
Add docker-compose.yml file
2 parents 9292b8b + 1cd13ac commit 382db42

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@
44

55
Show notes, slides, and samples from the CSharp with CSharpFritz show. Jupyter notebooks are available in the [notebooks](notebooks) folder. Notebooks are built using [.NET Interactive](https://github.com/dotnet/interactive).
66

7-
Recordings from the stream are available in the [CSharp with CSharpFritz playlist](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oXv32dOd36UydQYLejKR61R) on the YouTube .NET channel.
7+
Recordings from the stream are available in the [CSharp with CSharpFritz playlist](https://www.youtube.com/playlist?list=PLdo4fOcmZ0oXv32dOd36UydQYLejKR61R) on the YouTube .NET channel.
8+
9+
Start locally with docker-compose:
10+
```shell
11+
docker-compose up
12+
```

docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: '3.7'
2+
services:
3+
notebook:
4+
build:
5+
context: .
6+
ports:
7+
- "8888:8888"
8+
volumes:
9+
- ./notebooks/:/home/jovyan/notebooks/

0 commit comments

Comments
 (0)