Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FI-2091 Replaced docker-compose with docker compose #405

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/deployment/database.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ deployment. Multi-user deployments should use PostgreSQL instead.

### PostgreSQL with Docker
Rather than setting up a separate PostgreSQL service, you can run it via
`docker-compose` along with the rest of Inferno's services. To do so:
`docker compose` along with the rest of Inferno's services. To do so:
* Add `gem 'pg'` to `Gemfile`
* Add the following entry to `docker-compose.yml`:
```yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ At a minimum, deploying inferno involves the following:
some other way)
- run `setup.sh` to pull & build the needed docker images and run database
migrations
- run `docker-compose up -d` to start all of the services in the background
- run `docker compose up -d` to start all of the services in the background

## Services
By default, a deployment of Inferno includes the following services:
Expand Down
2 changes: 1 addition & 1 deletion lib/inferno/apps/cli/services.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module CLI
class Services < Thor
no_commands do
def base_command
'docker-compose -f docker-compose.background.yml'
'docker compose -f docker-compose.background.yml'
end
end

Expand Down
Loading