Skip to content

Commit

Permalink
Remove development dependencies from the main Docker Compose file. (#27)
Browse files Browse the repository at this point in the history
* feat: add AlwaysVerifiedIDsOnly option

* change error message

* update GetVerificationStatus handler to handle AlwaysVerifiedIDsOnly for previously verified users

* chore: remove dev dep from docker-compose.yml file

* doc: update mongo-express start command
  • Loading branch information
sameh-farouk authored Dec 2, 2024
1 parent c2b4841 commit a5924b6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
To start only mongo-express if core services are already running, run:
```bash
docker compose -f docker-compose.dev.yml up -d mongo-express
docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d mongo-express
```
### Running Locally
Expand Down
1 change: 0 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ services:

networks:
default:
external: true
name: tf_kyc_network
13 changes: 0 additions & 13 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,6 @@ services:
start_period: 10s
restart: unless-stopped

mongo-express:
image: mongo-express:latest
container_name: mongo_express
environment:
- ME_CONFIG_MONGODB_SERVER=db
- ME_CONFIG_MONGODB_PORT=27017
depends_on:
- db
ports:
- "8888:8081"
env_file:
- .express.env

volumes:
mongodb_data:

Expand Down

0 comments on commit a5924b6

Please sign in to comment.