-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (36 loc) · 802 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (36 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "3"
services:
jupyter:
image: jupyter/datascience-notebook
working_dir: /code
volumes:
- .:/code
ports:
- 8888:8888
container_name: competitive_nb
python:
build: ./
tty: true
stdin_open: true
volumes:
- "./:/code/"
container_name: python3
pypy:
build:
context: ./
dockerfile: Dockerfile_pypy
tty: true
stdin_open: true
volumes:
- "./:/code/"
container_name: pypy3
cpp:
build:
context: ./
dockerfile: Dockerfile_c
tty: true
stdin_open: true
volumes:
- "./:/code/"
container_name: cpp
working_dir: /code