Skip to content

Commit

Permalink
chore: use the latest IntegrationOS image tags in Docker Compose
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkuczera committed Jul 3, 2024
1 parent e5e7ddc commit 8543489
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ View the full guide [here](https://docs.integrationos.com/docs/quickstart).
3. Run migrations and load seed data

```shell
source .env
docker-compose -f docker-compose.data.yml run --rm migrate-before
docker-compose -f docker-compose.data.yml run --rm migrate-after
docker-compose -f docker-compose.data.yml run --rm seed-data
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: "3.8"
services:
migrate-before:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.0.0
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.11.0
command: npm run run-migrations::before
environment:
- MONGO_URI=mongodb://integrationos:${MONGO_PASSWORD}@mongo:27017/events-service?authSource=admin
- MONGO_DB_NAME=events-service

migrate-after:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.0.0
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.11.0
command: npm run run-migrations::after
environment:
- MONGO_URI=mongodb://integrationos:${MONGO_PASSWORD}@mongo:27017/events-service?authSource=admin
Expand Down
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.8"
services:
typescript-services:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/typescript-services:1.11.0
ports:
- 3001:3001
environment:
Expand All @@ -28,7 +28,7 @@ services:

connections-api:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/api:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/api:1.11.0
ports:
- 3005:3005
environment:
Expand All @@ -48,7 +48,7 @@ services:

event-core:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/event-core:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/event-core:1.11.0
environment:
- CONTEXT_COLLECTION_NAME=event-transactions
- CONTEXT_DATABASE_NAME=events-service
Expand All @@ -63,7 +63,7 @@ services:

gateway:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/gateway:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/gateway:1.11.0
ports:
- 3002:3002
environment:
Expand All @@ -81,7 +81,7 @@ services:

oauth-api:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/oauth:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/oauth:1.11.0
ports:
- 3003:3003
environment:
Expand All @@ -106,7 +106,7 @@ services:

secrets-service:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/secrets-service:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/secrets-service:1.11.0
environment:
- GOOGLE_APPLICATION_CREDENTIALS=/root/.config/gcloud/application_default_credentials.json
- KEY_ID=${KMS_KEY_ID}
Expand All @@ -119,7 +119,7 @@ services:

watchdog:
platform: linux/amd64
image: us-docker.pkg.dev/integrationos/docker-oss/watchdog:1.1.3
image: us-docker.pkg.dev/integrationos/docker-oss/watchdog:1.11.0
environment:
- CONTEXT_COLLECTION_NAME=event-transactions
- CONTEXT_DATABASE_NAME=events-service
Expand Down

0 comments on commit 8543489

Please sign in to comment.