Skip to content

Commit 594463b

Browse files
committed
adds minimal docker setup for the service
Signed-off-by: Nell Shamrell <[email protected]>
1 parent c697cc1 commit 594463b

File tree

4 files changed

+13
-20
lines changed

4 files changed

+13
-20
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.env.json
1+
.env

docker-compose.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
version: "3.8"
22
services:
3-
web:
4-
build: ../website
5-
ports:
6-
- "80:80"
3+
# web:
4+
# build: ../website
5+
# ports:
6+
# - "80:80"
77
service:
88
build: ../service
99
ports:
1010
- "4000:4000"
11-
crawler:
12-
build: ../crawler
13-
ports:
14-
- "5000:5000"
11+
env_file: .env
12+
# crawler:
13+
# build: ../crawler
14+
# ports:
15+
# - "5000:5000"

minimal.env.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

sample_env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CURATION_GITHUB_REPO="sample-curated-data"
2+
CURATION_GITHUB_TOKEN="<your GitHub token>"
3+
CRAWLER_GITHUB_TOKEN="<your GitHub token>"

0 commit comments

Comments
 (0)