Skip to content

Commit

Permalink
Update docker compose launch command
Browse files Browse the repository at this point in the history
  • Loading branch information
anbsky committed Aug 22, 2024
1 parent 3cc2eea commit 03a507d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
echo "::endgroup::"
- name: Set up containers
run: docker-compose up -d
run: docker compose up -d

- name: Set up containers
run: docker-compose -f apps/watchman/docker-compose.yml up -d clickhouse geoipupdate
run: docker compose -f apps/watchman/docker-compose.yml up -d clickhouse geoipupdate

- name: Check running containers
run: docker ps -a
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ go install github.com/volatiletech/sqlboiler/drivers/sqlboiler-psql

**1. Launch the core environment containers**

`docker-compose up -d`
`docker compose up -d`

*Note: if you're running a LBRY desktop app or a lbrynet instance, you will have to either shut it down or change its ports*

Expand Down Expand Up @@ -49,13 +49,13 @@ SDK_API_URL=http://localhost:8080 yarn dev:web

## Running with Docker

Make sure you have recent enough Docker and `docker-compose` installed.
Make sure you have recent enough Docker and `docker compose` installed.

**1. Initialize and launch the containers**

This will pull and launch SDK and postgres images, which Odysee API requires to operate.

`docker-compose -f docker-compose.yml -f docker-compose.app.yml up -d`
`docker compose -f docker-compose.yml -f docker compose.app.yml up -d`

*Note: if you're running a LBRY desktop app or lbrynet instance, you will have to either shut it down or change ports*

Expand Down

0 comments on commit 03a507d

Please sign in to comment.