Skip to content

Commit

Permalink
chore: update installation manual
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Nov 25, 2024
1 parent ff5dace commit a59cb4d
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions wiki/docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,25 +108,19 @@ using Shopware CLI Action
build:
stage: build
image:
name: friendsofshopware/shopware-cli:latest
name: shopware/shopware-cli:latest
entrypoint: [ "/bin/sh", "-c" ]
script:
- shopware-cli --version
```

### go install

```bash
go install github.com/FriendsOfShopware/shopware-cli@latest
```

### ddev

Add a file `.ddev/web-build/Dockerfile.shopware-cli`

```Dockerfile
# .ddev/web-build/Dockerfile.shopware-cli
COPY --from=ghcr.io/friendsofshopware/shopware-cli /usr/local/bin/shopware-cli /usr/local/bin/shopware-cli
COPY --from=shopware/shopware-cli:bin /shopware-cli /usr/local/bin/shopware-cli
```

### Docker Image
Expand All @@ -135,7 +129,7 @@ Add the following line to your docker image to copy the binary into your image.

```Dockerfile
# Dockerfile
COPY --from=ghcr.io/friendsofshopware/shopware-cli /usr/local/bin/shopware-cli /usr/local/bin/shopware-cli
COPY --from=shopware/shopware-cli:bin /shopware-cli /usr/local/bin/shopware-cli
```

## manually
Expand Down

0 comments on commit a59cb4d

Please sign in to comment.