File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1
1
# docker_dev_env_experiment
2
+
3
+ ## Current State
4
+ This Docker compose file currently spins up two services in Docker containers:
5
+ * Clearly Defined Website
6
+ * Clearly Defined Service
7
+
8
+ ### Pre-req
9
+ * Local copy of Clearly Defined Website repo with ` nell/dev-docker-file ` branch checked out
10
+ * Local copy of Clearly Defined Service repo with ` nell/dev-docker-file ` branch checked out
11
+
12
+ ## Future State
13
+ * Clearly Defined Crawler Container
14
+ * Harvested Data Container that contains sample harvested data
15
+ * Curated Data Container that contains sample curated data
Original file line number Diff line number Diff line change @@ -12,10 +12,21 @@ services:
12
12
build :
13
13
context : ../service
14
14
dockerfile : DevDockerfile
15
+ env_file : .env
15
16
ports :
16
17
- " 4000:4000"
17
18
env_file : .env
18
19
# crawler:
19
20
# build: ../crawler
21
+ # env_file: .env
20
22
# ports:
21
23
# - "5000:5000"
24
+ curations_mongo_db :
25
+ image : " mongo:latest"
26
+ ports :
27
+ - " 27017:27017"
28
+ environment :
29
+ - MONGO_INITDB_DATABASE=curations-dev-docker
30
+ - MONGO_INITDB_ROOT_USERNAME=admin
31
+ - MONGO_INITDB_ROOT_PASSWORD=secret
32
+
You can’t perform that action at this time.
0 commit comments