Skip to content

Commit 0c4d096

Browse files
committed
wip
1 parent ab2794f commit 0c4d096

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
pip install git+https://github.com/httpdss/structkit.git
3232

3333
# Or run with Docker
34-
docker run -v $(pwd):/workdir ghcr.io/httpdss/struct:main generate my-config.yaml ./output
34+
docker run -v $(pwd):/workdir ghcr.io/httpdss/structkit:main generate my-config.yaml ./output
3535
```
3636

3737
### Basic Usage

docs/completion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ When running StructKit in Docker, completion won't work directly. However, you c
167167
```sh
168168
#!/bin/bash
169169
# struct-wrapper.sh
170-
docker run --rm -v $(pwd):/workdir ghcr.io/httpdss/struct:main "$@"
170+
docker run --rm -v $(pwd):/workdir ghcr.io/httpdss/structkit:main "$@"
171171
```
172172

173173
Then set up completion for the wrapper:

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Clone the repository and install locally. See the [Development](development.md)
2525
Run StructKit without installing, using Docker:
2626

2727
```sh
28-
docker run -v $(pwd):/workdir -u $(id -u):$(id -g) ghcr.io/httpdss/struct:main generate file:///workdir/example/structure.yaml /workdir/example_output
28+
docker run -v $(pwd):/workdir -u $(id -u):$(id -g) ghcr.io/httpdss/structkit:main generate file:///workdir/example/structure.yaml /workdir/example_output
2929
```
3030

3131
Refer to the [Quick Start](quickstart.md) guide for more options.

docs/known-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ files:
118118
**Workaround**: Use the `-u $(id -u):$(id -g)` option when running Docker:
119119

120120
```sh
121-
docker run -v $(pwd):/workdir -u $(id -u):$(id -g) ghcr.io/httpdss/struct:main generate file://config.yaml .
121+
docker run -v $(pwd):/workdir -u $(id -u):$(id -g) ghcr.io/httpdss/structkit:main generate file://config.yaml .
122122
```
123123

124124
**Status**: Docker behavior

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tags:
1616
docker run \
1717
-v $(pwd):/workdir \
1818
-u $(id -u):$(id -g) \
19-
ghcr.io/httpdss/struct:main generate \
19+
ghcr.io/httpdss/structkit:main generate \
2020
file:///workdir/example/structure.yaml \
2121
/workdir/example_output
2222
```

0 commit comments

Comments
 (0)