Skip to content

Commit 75ae0ee

Browse files
authored
Merge pull request #3 from alexandre-abrioux/docker-compose
Add a docker-compose.yml file for development purposes
2 parents ca4aa3e + 6429eef commit 75ae0ee

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

.dockerignore

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
/dist
2-
/node_modules
3-
.github
1+
/.github/
2+
/.nyc_output/
3+
/dist/
4+
/node_modules/
5+
/.dockerignore
6+
/.gitignore
7+
/docker-compose.dev.yml
8+
/Dockerfile

docker-compose.dev.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3.8'
2+
3+
services:
4+
5+
noether:
6+
container_name: noether
7+
build:
8+
context: .
9+
target: base
10+
command: tail -f /dev/null
11+
volumes:
12+
- .:/app
13+
working_dir: /app

0 commit comments

Comments
 (0)