@tolgee/cli 2.15.0 → 2.15.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,22 @@ pnpm add --global @tolgee/cli
|
|
|
23
23
|
|
|
24
24
|
See our [documentation](https://tolgee.io/tolgee-cli/installation) for more information.
|
|
25
25
|
|
|
26
|
+
### Docker Installation
|
|
27
|
+
Alternatively, you can use the Docker image:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
# Pull the latest image
|
|
31
|
+
docker pull tolgee/cli:latest
|
|
32
|
+
|
|
33
|
+
# Run directly
|
|
34
|
+
docker run --rm tolgee/cli:latest --help
|
|
35
|
+
|
|
36
|
+
# Create an alias for easier usage
|
|
37
|
+
alias tolgee="docker run --rm -v \$(pwd):/workspace -w /workspace tolgee/cli:latest"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
The Docker images are available on [Docker Hub](https://hub.docker.com/r/tolgee/cli) and support multiple platforms (linux/amd64, linux/arm64).
|
|
41
|
+
|
|
26
42
|
## Usage
|
|
27
43
|
Once installed, you'll have access to the `tolgee` command. Run `tolgee help` to see all the supported commands, their
|
|
28
44
|
options and arguments.
|