Skip to content

Commit 9ff9458

Browse files
committed
feat: update to current docker standards
1. The "version" Tag in the compose file is [obsolete](https://github.com/compose-spec/compose-spec/blob/master/spec.md#version-top-level-element-obsolete) 2. `docker-compose` is from Compose-V1 but this stopped receiving updates, so this should be migrated to [V2](https://docs.docker.com/compose/migrate/)
1 parent 32e6e92 commit 9ff9458

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ a quick start, follow these steps:
9999

100100
3. **Start the Docker Containers:**
101101
```bash
102-
docker-compose up -d
102+
docker compose up -d
103103
```
104104
4. **Create an account:**
105105
```bash

docker/all-in-one/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
all-in-one:
43
build:

docker/backend/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
hi-events-backend:
43
build:

docker/development/docker-compose.dev.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3'
21
services:
32
backend:
43
build:

docker/frontend/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3.8'
21
services:
32
hi-events-frontend:
43
build:

0 commit comments

Comments
 (0)