Skip to content

Commit

Permalink
fix: pin specific docker images for local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
wajeht committed Oct 29, 2023
1 parent be52892 commit b6bf0a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.9'
services:
postgres:
image: postgres:latest
image: postgres:16.0
container_name: postgres
restart: unless-stopped
environment:
Expand All @@ -27,7 +27,7 @@ services:
- postgres

mongodb:
image: mongo:latest
image: mongo:7.0.2
container_name: mongodb
restart: unless-stopped
ports:
Expand Down
Binary file modified src/database/db.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion src/database/knexfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { fileURLToPath } from 'url';
import path from 'path';
import { fileURLToPath } from 'url';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand Down

0 comments on commit b6bf0a7

Please sign in to comment.