55### Linux
66``` bash
77# One-liner installation (auto-detects your platform)
8- curl -fsSL https://$GITHUB_PAGES_URL /install.sh | bash
8+ curl -fsSL https://raw.githubusercontent.com/Abiji-2020/pg_ask/gh-pages /install.sh | bash
99```
1010
1111### Windows
1212For Windows, use Docker or WSL2 with the Linux installation method.
1313
14- ### Docker
14+ ### Docker (Full)
1515``` bash
16- docker pull ghcr.io/$GITHUB_REPOSITORY :latest
16+ docker pull ghcr.io/Abiji-2020/pg_ask :latest
1717docker run -it \
1818 -e POSTGRES_PASSWORD=postgres \
1919 -e PG_ASK_AI_KEY=" your-api-key" \
2020 -p 5432:5432 \
21- ghcr.io/$GITHUB_REPOSITORY :latest
21+ ghcr.io/Abiji-2020/pg_ask:latest
22+ ```
23+
24+ ### Docker (Minimal)
25+ ``` bash
26+ docker pull ghcr.io/Abiji-2020/pg_ask:latest-minimal
27+ docker run -it \
28+ -e POSTGRES_PASSWORD=postgres \
29+ -e PG_ASK_AI_KEY=" your-api-key" \
30+ -p 5432:5432 \
31+ ghcr.io/Abiji-2020/pg_ask:latest-minimal
2232```
2333
2434### With docker-compose
@@ -28,7 +38,7 @@ version: "3.9"
2838
2939services:
3040 postgres:
31- image: ghcr.io/$GITHUB_REPOSITORY :latest
41+ image: ghcr.io/Abiji-2020/pg_ask :latest
3242 environment:
3343 POSTGRES_USER: postgres
3444 POSTGRES_PASSWORD: postgres
@@ -59,10 +69,10 @@ docker-compose up
5969
6070## Direct Downloads
6171
62- All pre-built binaries are available at:
63- ** https://$GITHUB_PAGES_URL/releases/ **
64-
65- Or browse: ** https://$GITHUB_PAGES_URL/ **
72+ All pre-built binaries and Docker images are available at:
73+ - ** Releases ** : https://github.com/Abiji-2020/pg_ask/releases
74+ - ** GitHub Pages ** : https://abiji-2020.github.io/pg_ask/
75+ - ** Docker Registry ** : https://github.com/Abiji-2020/pg_ask/pkgs/container/pg_ask
6676
6777## Manual Installation
6878
@@ -179,6 +189,7 @@ docker logs pg_ask_postgres
179189
180190## Support
181191
182- - Issues: https://github.com/$GITHUB_REPOSITORY/issues
183- - Releases: https://github.com/$GITHUB_REPOSITORY/releases
184- - Pages: https://$GITHUB_PAGES_URL/pg_ask/
192+ - Issues: https://github.com/Abiji-2020/pg_ask/issues
193+ - Releases: https://github.com/Abiji-2020/pg_ask/releases
194+ - GitHub Pages: https://abiji-2020.github.io/pg_ask/
195+ - Docker Images: ghcr.io/Abiji-2020/pg_ask: latest (or with -minimal suffix)
0 commit comments