Skip to content

Commit

Permalink
Fix references to docker-compose and broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Hain committed Dec 13, 2024
1 parent c262384 commit 9c85a62
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ vi ./config/bigip_receivers.yaml
# Run the configuration generator
docker run --rm -it -w /app -v ${PWD}:/app --entrypoint /app/src/bin/init_entrypoint.sh python:3.12.6-slim-bookworm --generate-config
# Start the tool
docker-compose up
docker compose up
```

## Configuration
Expand Down Expand Up @@ -99,7 +99,7 @@ bigip_receiver_defaults:
# The data_types that should be enabled or disabled.
# DNS and GTM are disabled by default and users can enable those modules
# on all devices by setting the below to true.
# A full list of data_types is in pages/receiver_readme.md.
# A full list of data_types is at https://f5devcentral.github.io/application-study-tool/components/otel_collector/receiver_readme.html.
data_types:
f5.dns:
enabled: false
Expand Down
2 changes: 1 addition & 1 deletion pages/config/config.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: page
title: Configuration
title: Configuration Management
nav_order: 3
has_children: true
permalink: /config
Expand Down
4 changes: 2 additions & 2 deletions pages/config/config_helper/config_helper.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi
(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
4 changes: 2 additions & 2 deletions pages/config/manual_config/default_otel.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi

(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
4 changes: 2 additions & 2 deletions pages/config/manual_config/receivers_pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ to take effect. This can be accomplished in a few ways, but the simplest is typi

(From the project root directory)
```bash
$ docker-compose down
$ docker-compose up -d
$ docker compose down
$ docker compose up -d
```
2 changes: 1 addition & 1 deletion pages/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ vi ./config/big_receivers.yaml
# Run the configuration generator
docker run --rm -it -w /app -v ${PWD}:/app --entrypoint /app/src/bin/init_entrypoint.sh python:3.12.6-slim-bookworm --generate-config
# Start the tool
docker-compose up
docker compose up
```

## Configure Default Device Settings
Expand Down
2 changes: 1 addition & 1 deletion pages/troubleshooting/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $ docker logs application-study-tool-otel-collector-1 >& otellogs.txt && gzip ot
### Stop and Start A Container
Individual containers can be started and stopped using the `docker stop <container name or id>` command.
This will cause the container to restart with any modifications to config files picked up (alternative
to the `docker-compose down` and `docker-compose up` commands which restart all containers):
to the `docker compose down` and `docker compose up` commands which restart all containers):

```shell
$ docker stop fdbde8a3ee16
Expand Down

0 comments on commit 9c85a62

Please sign in to comment.