Compare commits

..

No commits in common. "7fc78c0a036909d3a358712e79f1096bef8f00a7" and "640514af6dc4b199f8325ee69f7fac041c487e6a" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install project dependencies
run: docker run -w /usr/src/app -v ./:/usr/src/app oven/bun:1 bun install
run: docker run -w /usr/src/app -v ./:/usr/src/app node:20 npm install
- name: Run docker-compose
run: docker compose down -v && docker compose run bot-api ping mongodb

View File

@ -2,7 +2,7 @@ version: "3"
services:
mongodb:
image: mongo:bionic
image: mongo
container_name: mongodb
ports:
- "27017:27017"