fix: use the latest docker service (#1711)

This commit is contained in:
Himself65 2023-03-27 22:08:40 -05:00 committed by GitHub
parent 1f005bba9b
commit c9ea53c2d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -95,7 +95,7 @@ jobs:
needs: build-frontend
services:
octobase:
image: ghcr.io/toeverything/cloud:nightly-latest
image: ghcr.io/toeverything/cloud-self-hosted:nightly-latest
ports:
- 3000:3000
env:
@ -148,7 +148,7 @@ jobs:
needs: build-frontend
services:
octobase:
image: ghcr.io/toeverything/cloud:nightly-latest
image: ghcr.io/toeverything/cloud-self-hosted:nightly-latest
ports:
- 3000:3000
env:

View File

@ -163,7 +163,7 @@ jobs:
checks: write
services:
octobase:
image: ghcr.io/toeverything/cloud:nightly-latest
image: ghcr.io/toeverything/cloud-self-hosted:nightly-latest
ports:
- 3000:3000
env:
@ -274,7 +274,7 @@ jobs:
checks: write
services:
octobase:
image: ghcr.io/toeverything/cloud:nightly-latest
image: ghcr.io/toeverything/cloud-self-hosted:nightly-latest
ports:
- 3000:3000
env:

View File

@ -42,8 +42,8 @@ yarn install
```shell
# Run OctoBase container in background
docker pull ghcr.io/toeverything/cloud:nightly-latest
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud:nightly-latest
docker pull ghcr.io/toeverything/cloud-self-hosted:nightly-latest
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud-self-hosted:nightly-latest
```
```shell