diff options
| author | jc0b <j.burley@vu.nl> | 2020-05-11 20:43:03 +0200 |
|---|---|---|
| committer | jc0b <j.burley@vu.nl> | 2020-05-11 20:43:03 +0200 |
| commit | 9663374aa7f086b8a0aa9e0f254f0487f5ce09b4 (patch) | |
| tree | e29a6b0f5c42824a0ede7d532797a9ab9c6453a6 /docker-compose.yml | |
| parent | 4c347eb501a16eaa2a54933ed1ec8fa26521cc88 (diff) | |
Added mongodb dockerfile, removed tests being added to sql db
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 2bbc0d9e..4331a5a8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -56,6 +56,8 @@ services: OPENDC_DB_PASSWORD: opendcpassword ports: - 27017:27017 + #volumes: + # - mongo-volume:/data/db mongo-express: image: mongo-express @@ -64,4 +66,8 @@ services: - 8082:8081 environment: ME_CONFIG_MONGODB_ADMINUSERNAME: root - ME_CONFIG_MONGODB_ADMINPASSWORD: rootpassword
\ No newline at end of file + ME_CONFIG_MONGODB_ADMINPASSWORD: rootpassword + +volumes: + mongo-volume: + external: false
\ No newline at end of file |
