Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CommonTasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ To start a config server that registers itself with Eureka at startup (discovery
docker run --rm -it --pull=always -p 8888:8888 --name steeltoe-config -e eureka.client.enabled=true steeltoe.azurecr.io/config-server
```

To start a config server that requires basic authentication (and change username and password from the defaults of devuser/devpassword):

```shell
docker run --rm -it --pull=always -p 8888:8888 --name steeltoe-config steeltoe.azurecr.io/config-server --auth.enabled=true --auth.username=username --auth.password=password
```

### Run SCCS with Java

To run a Spring Cloud Config Server without Docker:
Expand Down Expand Up @@ -127,7 +133,7 @@ docker run --rm -it --pull=always -p 5432:5432 --name steeltoe-postgres -e POSTG

### Run RabbitMQ Server with Docker

> [!NOTE]
> [!NOTE]
> This image has the management plugin enabled and no credentials set.

```shell
Expand Down