Skip to content

Commit 15dada8

Browse files
committed
fix docker image references
1 parent bdf692c commit 15dada8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
env:
1919
CARGO_TERM_COLOR: always
2020
REGISTRY_USERNAME: lovasoa
21-
REGISTRY_IMAGE: sqlpage/sqlpage
21+
REGISTRY_IMAGE: lovasoa/sqlpage
2222

2323
jobs:
2424
compile_and_lint:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,11 @@ The easiest way to get started is to download the latest release from the
145145

146146
### With docker
147147

148-
To run on a server, you can use [the docker image](https://hub.docker.com/r/sqlpage/SQLPage):
148+
To run on a server, you can use [the docker image](https://hub.docker.com/r/lovasoa/SQLPage):
149149

150150
- [Install docker](https://docs.docker.com/get-docker/)
151151
- In a terminal, run the following command:
152-
- `docker run -it --name sqlpage -p 8080:8080 --volume "$(pwd):/var/www" --rm sqlpage/SQLPage`
152+
- `docker run -it --name sqlpage -p 8080:8080 --volume "$(pwd):/var/www" --rm lovasoa/SQLPage`
153153
- (`"$(pwd):/var/www"` allows sqlpage to run sql files from your current working directory)
154154
- Create a file called index.sql with the contents from [this example](./index.sql)
155155
- Open https://localhost:8080 in your browser
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sqlpage/SQLPage:main
1+
FROM lovasoa/SQLPage:main
22

33
COPY ./sqlpage /etc/sqlpage
44
COPY . /var/www

examples/official-site/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sqlpage/SQLPage:main
1+
FROM lovasoa/SQLPage:main
22

33
COPY ./sqlpage /etc/sqlpage
44
COPY . /var/www
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM sqlpage/SQLPage
1+
FROM lovasoa/SQLPage
22

33
COPY *.sql sqlpage ./

examples/roundest_pokemon_rating/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sqlpage/SQLPage:latest
1+
FROM lovasoa/SQLPage:latest
22

33
COPY sqlpage /etc/sqlpage
44
COPY src /var/www

examples/tiny_twitter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM sqlpage/SQLPage:main
1+
FROM lovasoa/SQLPage:main
22

33
COPY sqlpage /etc/sqlpage
44
COPY . /var/www/

0 commit comments

Comments
 (0)