Skip to content

Commit

Permalink
Remove logging from base docker-compose
Browse files Browse the repository at this point in the history
Fix spell in readme
  • Loading branch information
Lars van der Bijl committed Feb 26, 2021
1 parent c9ca917 commit 678ca1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
4 changes: 2 additions & 2 deletions sandbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ https://www.opencue.io/docs/quick-starts/.

## Monitoring

To get started with monitoring there is also a additional docker-compose which sets up
To get started with monitoring there is also an additional docker-compose which sets up
monitoring for key services.

This can be started from the OpenCue root directory with:
```bash
docker-compose --project-directory . -f sandbox/docker-compose.yml -f sandbox/docker-compose.monitoring.yml up
```

Spins up a monitoring strack
Spins up a monitoring stack

http://localhost:3000/

Expand Down
19 changes: 1 addition & 18 deletions sandbox/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ services:
- "5432:5432"
volumes:
- ./sandbox/db-data:/var/lib/postgresql/data
logging:
driver: loki
options:
loki-url: http://localhost:3100/loki/api/v1/push
loki-external-labels: job=db

flyway:
build:
Expand All @@ -34,9 +29,7 @@ services:
command: /opt/scripts/migrate.sh

cuebot:
build:
context: .
dockerfile: cuebot/Dockerfile
image: opencue/cuebot
links:
- db
ports:
Expand All @@ -48,11 +41,6 @@ services:
environment:
- CUE_FRAME_LOG_DIR=$CUE_FRAME_LOG_DIR
command: --datasource.cue-data-source.jdbc-url=jdbc:postgresql://db/cuebot --datasource.cue-data-source.username=cuebot --datasource.cue-data-source.password=$POSTGRES_PASSWORD
logging:
driver: loki
options:
loki-url: http://localhost:3100/loki/api/v1/push
loki-external-labels: job=cuebot

rqd:
image: opencue/rqd
Expand All @@ -67,8 +55,3 @@ services:
volumes:
- /tmp/rqd/logs:/tmp/rqd/logs
- /tmp/rqd/shots:/tmp/rqd/shots
logging:
driver: loki
options:
loki-url: http://localhost:3100/loki/api/v1/push
loki-external-labels: job=rqd

0 comments on commit 678ca1f

Please sign in to comment.