Skip to content

Commit

Permalink
Added ES_LOCAL_URL in .env + updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed Sep 25, 2024
1 parent a659c9d commit 960248a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ To delete the service and the volumes, you can run the command:

```bash
docker compose rm -fsv
docker compose down -v
```

We support also the `docker-compose` command with a dash. In this case,
Expand All @@ -80,7 +81,8 @@ you need to use the following commands:
```bash
docker-compose up -d # start the services
docker-compose stop # stop the service
docker-compose rm -fsv # delete the services and the volumes
docker-compose rm -fsv # delete the services
docker-compose down -v # delete the volumes
```

## Logging
Expand Down
1 change: 1 addition & 0 deletions start-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ cat > .env <<- EOM
ES_LOCAL_VERSION=$es_version
ES_LOCAL_CONTAINER_NAME=$elasticsearch_container_name
ES_LOCAL_PASSWORD=$es_password
ES_LOCAL_URL=http://localhost:9200
ES_LOCAL_PORT=9200
ES_LOCAL_HEAP_INIT=128m
ES_LOCAL_HEAP_MAX=2g
Expand Down

0 comments on commit 960248a

Please sign in to comment.