💥 Replace docker-compose with docker compose

This commit is contained in:
Nikhil Badyal
2024-04-04 12:15:11 +05:30
committed by Nikhil Badyal
parent a4b4bfe527
commit bd44c41dc1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -83,10 +83,10 @@ jobs:
run: |
if [[ "${{ inputs.CI_TEST }}" =~ ^(true|True|1)$ ]]; then
echo "In CI Testing. Using local compose file."
docker-compose -f docker-compose-local.yml up --build
docker compose -f docker-compose-local.yml up --build
else
echo "Using Prod compose file."
docker-compose up --build
docker compose up --build
fi
- name: Upload Build APKS
uses: actions/upload-artifact@main
+1 -1
View File
@@ -61,7 +61,7 @@ You can use any of the following methods to build.
4. Update `.env` file if you want some customization(See notes)
5. Run script with
```shell
docker-compose up --build
docker compose up --build
```
- 🐳With Docker