Skip to content

Commit

Permalink
fix: build image
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed Dec 29, 2023
1 parent 10ba74a commit 8ba6a98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
container: ghcr.io/scuffletv/ci/build:81b63c8ec89c39e50e228730b6c7befcf940b812
container: ghcr.io/scuffletv/ci/build:89c022fb1a532dc64a54ad3285606630bd9cca04
steps:
- uses: actions/checkout@v4

Expand All @@ -49,7 +49,7 @@ jobs:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
container: ghcr.io/scuffletv/ci/build:81b63c8ec89c39e50e228730b6c7befcf940b812
container: ghcr.io/scuffletv/ci/build:89c022fb1a532dc64a54ad3285606630bd9cca04
services:
cockroach:
image: ghcr.io/scuffletv/ci/cockroach:latest
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
needs: [pre_job, lint, test]
if: needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
container: ghcr.io/scuffletv/ci/build:81b63c8ec89c39e50e228730b6c7befcf940b812
container: ghcr.io/scuffletv/ci/build:89c022fb1a532dc64a54ad3285606630bd9cca04
steps:
- uses: actions/checkout@v4

Expand Down
10 changes: 5 additions & 5 deletions dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ name: "db-scuffle-dev"

services:
cockroach:
image: ghcr.io/scuffletv/cockroach:latest
image: ghcr.io/scuffletv/ci/cockroach:latest
command: start-single-node --insecure --store=type=mem,size=0.25 --advertise-addr=0.0.0.0
ports:
- "5432:26257"
- "8080:8080"

nats:
image: nats:latest
image: ghcr.io/scuffletv/ci/nats:latest
ports:
- "4222:4222"
- "8222:8222"
Expand All @@ -20,7 +20,7 @@ services:
- "-js"

minio:
image: minio/minio
image: ghcr.io/scuffletv/ci/minio/minio:latest
ports:
- "9000:9000"
- "9001:9001"
Expand All @@ -30,7 +30,7 @@ services:
command: server /export --console-address ":9001"

createbuckets:
image: minio/mc
image: minio/mc:latest
depends_on:
- minio
entrypoint: >
Expand All @@ -49,6 +49,6 @@ services:
"
redis:
image: redis:latest
image: ghcr.io/scuffletv/ci/redis:latest
ports:
- "6379:6379"

0 comments on commit 8ba6a98

Please sign in to comment.