Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Voyz committed Oct 30, 2024
2 parents c897f10 + 59f759e commit a0ab1cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
8 changes: 3 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,11 @@ If using `docker buildx`, run:
docker buildx build -t ibeam --load .
```
Alternatively, `docker-compose` can be used to build and run a local IBeam instance as follows:
Alternatively, `docker compose` can be used to build and run a local IBeam instance as follows:
Create a `docker-compose.yml` file with the following content:
Create a `compose.yaml` file with the following content:
```yaml
version: "2.1"
services:
ibeam:
build: .
Expand All @@ -196,7 +194,7 @@ IBEAM_PASSWORD=your_password123
Run the following command:
```shell
docker-compose up -d --build
docker compose up -d --build
```
### <a name="multi-platform-builds"></a>Building and Pushing Multi-Platform Images
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,11 @@ pip install ibeam
docker run --env IBEAM_ACCOUNT=your_account123 --env IBEAM_PASSWORD=your_password123 -p 5000:5000 voyz/ibeam
```

#### docker-compose:
#### docker compose:

Create a `docker-compose.yml` file with the following contents:
Create a `compose.yaml` file with the following contents:

```yaml
version: "2.1"

services:
ibeam:
image: voyz/ibeam
Expand All @@ -108,7 +106,7 @@ IBEAM_PASSWORD=your_password123
Run the following command:

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

#### Standalone:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml → compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "2.1"

services:
ibeam:
image: voyz/ibeam
Expand Down

0 comments on commit a0ab1cc

Please sign in to comment.