Skip to content

Commit 3d74760

Browse files
committed
Updated docker compose yml
1 parent eea66e7 commit 3d74760

File tree

8 files changed

+12
-15
lines changed

8 files changed

+12
-15
lines changed

docker-compose-with-elasticstack/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
## Usage
77
```shell
8-
$ docker-compose build
9-
$ docker-compose up -d
8+
$ docker compose build
9+
$ docker compose up -d
1010
```

docker-compose-with-elasticstack/compose.yml renamed to docker-compose-with-elasticstack/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
neo4j:
33
container_name: neo4j
4-
image: neo4j:4.4.27
4+
image: neo4j:4.4.45
55
# Using volumes slows down the container.
66
#volumes:
77
# - ./neo4j/data:/data
@@ -77,4 +77,3 @@ services:
7777

7878
networks:
7979
neo4j-network:
80-
external: true

docker-compose-with-nginx/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ The following describes how to create a self-signed SSL certificate. If you can
3535

3636
```shell
3737
$ cd LogonTracer/docker-compose-with-nginx/
38-
$ docker-compose build
39-
$ docker-compose up -d
38+
$ docker compose build
39+
$ docker compose up -d
4040
```
4141

4242
### Accessing the Web GUI

docker-compose-with-nginx/compose.yml renamed to docker-compose-with-nginx/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
neo4j:
33
container_name: neo4j
44
# image: neo4j:4.4.14-enterprise
5-
image: neo4j:4.4.27
5+
image: neo4j:4.4.45
66
volumes:
77
- ./neo4j/certificates:/var/lib/neo4j/certificates
88
# Using volumes slows down the container.
@@ -69,4 +69,3 @@ services:
6969

7070
networks:
7171
neo4j-network:
72-
external: true

docker-compose/LogonTracer/build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.0-slim
1+
FROM python:3.13.7-slim
22

33
RUN set -ex \
44
\

docker-compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
## Usage
77
```shell
8-
$ docker-compose build
9-
$ docker-compose up -d
8+
$ docker compose build
9+
$ docker compose up -d
1010
```
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
neo4j:
33
container_name: neo4j
4-
image: neo4j:4.4.27
4+
image: neo4j:4.4.45
55
# Using volumes slows down the container.
66
#volumes:
77
# - ./neo4j/data:/data
@@ -43,5 +43,4 @@ services:
4343
- neo4j-network
4444

4545
networks:
46-
neo4j-network:
47-
external: true
46+
neo4j-network:

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM neo4j:4.4.27
1+
FROM neo4j:4.4.45
22

33
# ensure local python is preferred over distribution python
44
ENV PATH /usr/local/bin:$PATH

0 commit comments

Comments
 (0)