feat: make docker compose command more flexible (#1139)

By not specifying '-f docker-compose.yml' in the docker compose command, it allows
more flexible use of configuration files. docker-compose.yml is already the default
config file when none is specified, and this also allows overrides via
docker-compose.override.yml, which is recognized by default.
This commit is contained in:
thehunmonkgroup 2023-09-08 03:17:59 -06:00 committed by GitHub
parent 72659709a8
commit 82ab6d007d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
docker-compose.override.yml
secondbrain/
.env
.streamlit/secrets.toml

View File

@ -132,7 +132,7 @@ Additionally, you'll need a [Supabase](https://supabase.com/) account for:
- **Step 5**: Launch the app
```bash
docker compose -f docker-compose.yml up --build
docker compose up --build
```
- **Step 6**: Navigate to `localhost:3000` in your browser

View File

@ -111,7 +111,7 @@ All the scripts can be found in the [scripts](https://github.com/stangirard/quiv
- **Step 5**: Launch the app
```bash
docker compose -f docker-compose.yml up --build
docker compose up --build
```
- **Step 6**: Navigate to `localhost:3000` in your browser

View File

@ -80,7 +80,7 @@ echo "Running the migration scripts..."
# Step 5: Launch the app
echo "Launching the app..."
docker compose -f docker-compose.yml up --build
docker compose up --build
# Final message
echo "Navigate to localhost:3000 in your browser to access the app."