Skip to content

Commit

Permalink
remove containers after run by default
Browse files Browse the repository at this point in the history
  • Loading branch information
QAston committed Dec 26, 2023
1 parent 5b7e7c6 commit 714c751
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Once you've set up your env you can get the privatenet up and running using:

```bash
docker compose build possim
docker compose run --use-aliases possim
docker compose run --use-aliases --rm possim
```

Once running, you can connect using:
Expand All @@ -79,15 +79,15 @@ curl -v http://$POSSIM_HOSTNAME:15050
To run with overridden config:

```bash
docker compose run --use-aliases possim CONFIG=/opt/privatenet/pbs_config.yaml
docker compose run --use-aliases --rm possim CONFIG=/opt/privatenet/pbs_config.yaml
```

See [configuration.yaml](./eth_possim/resources/configuration.yaml) for the default values.

How to test
-----------
```bash
docker compose run possim test
docker compose run --rm possim test
```

How it works inside the container
Expand Down

0 comments on commit 714c751

Please sign in to comment.