Skip to content

Commit

Permalink
adding registry to image value in docker-compose.yaml (opensearch-pro…
Browse files Browse the repository at this point in the history
…ject#2980)

Podman requires the registry url in order to pull out the image

Signed-off-by: qhung <[email protected]>
  • Loading branch information
quanghungb authored Sep 10, 2024
1 parent 76d9640 commit e8e9271
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/log-ingestion/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ version: '3'
services:
fluent-bit:
container_name: fluent-bit
image: fluent/fluent-bit
image: docker.io/fluent/fluent-bit
volumes:
- ./fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf
- ./test.log:/var/log/test.log
networks:
- opensearch-net
opensearch:
container_name: opensearch
image: opensearchproject/opensearch:latest
image: docker.io/opensearchproject/opensearch:latest
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
Expand All @@ -29,7 +29,7 @@ services:
networks:
- opensearch-net
dashboards:
image: opensearchproject/opensearch-dashboards:latest
image: docker.io/opensearchproject/opensearch-dashboards:latest
container_name: opensearch-dashboards
ports:
- 5601:5601
Expand All @@ -43,4 +43,4 @@ services:
- opensearch-net

networks:
opensearch-net:
opensearch-net:

0 comments on commit e8e9271

Please sign in to comment.