Skip to content

Commit

Permalink
Updated docker tags and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jan 7, 2024
1 parent b15fe04 commit 6ffe2e9
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/devcontainers/dotnet:0-7.0
FROM mcr.microsoft.com/devcontainers/dotnet:0-8.0

RUN apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts

Expand All @@ -12,4 +12,4 @@ RUN sudo dotnet dev-certs https \
# Change shell to zsh
RUN chsh -s $(which zsh)

ENTRYPOINT [ "/bin/zsh" ]
ENTRYPOINT [ "/bin/zsh" ]
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ services:
- 5601:5601

redis:
image: redis:6-alpine
image: redis:7.2-alpine
ports:
- 6379:6379

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Refer to the [Exceptionless documentation](https://exceptionless.com/docs/).
We provide very reasonably priced hosting at [Exceptionless](https://exceptionless.com). By using our hosted service, you are supporting the project and helping it get better! We also provide set up and support services.

Exceptionless can easily be run locally using Docker:

- `docker run --rm -it -p 5200:8080 exceptionless/exceptionless:latest`
- Open `http://localhost:5200`
- Create an account. The first account in the system will automatically be an admin.
Expand All @@ -25,12 +26,12 @@ This will run a completely self-contained simple instance of Exceptionless. It i

## Contributing

_In appreciation for anyone who submits a non-trivial pull request, we will give you a free [Exceptionless](https://exceptionless.com) paid plan for a year. After your pull request is accepted, simply send an email to [email protected] with the name of your organization and we will upgrade you to a paid plan._
_In appreciation for anyone who submits a non-trivial pull request, we will give you a free [Exceptionless](https://exceptionless.com) paid plan for a year. After your pull request is accepted, simply send an email to <[email protected]> with the name of your organization and we will upgrade you to a paid plan._

- Please read the [contributing document](https://github.com/exceptionless/Exceptionless/blob/main/CONTRIBUTING.md)
- Requirements
- [Docker](https://www.docker.com/get-docker)
- [.NET 7.0](https://dotnet.microsoft.com/)
- [.NET 8.0](https://dotnet.microsoft.com/)
- [Node 18+](https://nodejs.org/)
- Visual Studio Code
- Open Visual Studio Code and then open the Exceptionless root folder
Expand Down
2 changes: 1 addition & 1 deletion build/docker/elasticsearch/8.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.1
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.3

RUN elasticsearch-plugin install -b mapper-size
RUN elasticsearch-plugin install -b repository-azure
Expand Down
10 changes: 5 additions & 5 deletions docker/docker-compose.apm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2.2"

services:
setup:
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3
volumes:
- certs:/usr/share/elasticsearch/config/certs
user: "0"
Expand Down Expand Up @@ -53,7 +53,7 @@ services:
depends_on:
setup:
condition: service_healthy
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3
volumes:
- certs:/usr/share/elasticsearch/config/certs
- esdata:/usr/share/elasticsearch/data
Expand Down Expand Up @@ -98,7 +98,7 @@ services:
depends_on:
elasticsearch:
condition: service_healthy
image: docker.elastic.co/kibana/kibana:8.11.1
image: docker.elastic.co/kibana/kibana:8.11.3
volumes:
- certs:/usr/share/kibana/config/certs
ports:
Expand All @@ -124,7 +124,7 @@ services:
depends_on:
elasticsearch:
condition: service_healthy
image: docker.elastic.co/apm/apm-server:8.11.1
image: docker.elastic.co/apm/apm-server:8.11.3
volumes:
- certs:/usr/share/apm-server/certs
ports:
Expand All @@ -149,7 +149,7 @@ services:
-E output.elasticsearch.ssl.certificate_authorities=["/usr/share/apm-server/certs/ca/ca.crt"]
redis:
image: redis:6-alpine
image: redis:7.2-alpine
ports:
- 6379:6379

Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ services:
- appdata:/app/storage

elasticsearch:
image: exceptionless/elasticsearch:7.17.14
image: exceptionless/elasticsearch:8.11.3
environment:
discovery.type: single-node
xpack.security.enabled: "false"
Expand All @@ -64,12 +64,12 @@ services:
kibana:
depends_on:
- elasticsearch
image: docker.elastic.co/kibana/kibana:7.17.14
image: docker.elastic.co/kibana/kibana:8.11.3
ports:
- 5601:5601

redis:
image: redis:6.0-alpine
image: redis:7.2-alpine
ports:
- 6379:6379

Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2.2"

services:
elasticsearch:
image: exceptionless/elasticsearch:8.11.1
image: exceptionless/elasticsearch:8.11.3
environment:
node.name: elasticsearch
cluster.name: exceptionless
Expand All @@ -18,14 +18,14 @@ services:
kibana:
depends_on:
- elasticsearch
image: docker.elastic.co/kibana/kibana:8.11.1
image: docker.elastic.co/kibana/kibana:8.11.3
environment:
xpack.security.enabled: "false"
ports:
- 5601:5601

redis:
image: redis:6-alpine
image: redis:7.2-alpine
ports:
- 6379:6379

Expand Down
2 changes: 1 addition & 1 deletion samples/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
- 5601:5601

redis:
image: redis:6.0-alpine
image: redis:7.2-alpine
ports:
- 6379:6379

Expand Down

0 comments on commit 6ffe2e9

Please sign in to comment.