Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Masa-Shin committed Jan 9, 2021
0 parents commit dc1ed3b
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 0 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM node:14.15.0-alpine as node
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: '3'

services:
db:
image: mysql:5.7
redis:
image: redis:5.0.6-alpine
hostname: redis
ports:
- 6379:6379
58 changes: 58 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"extends": [
"config:base"
],

"enabledManagers": ["npm", "dockerfile", "docker-compose"],

"suppressNotifications": ["prIgnoreNotification"],
"prCreation": "immediate",
"unpublishSafe": true,
"draftPR": true,
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"labels": ["security"]
},

"schedule": [
"at any time"
],
"timezone": "Asia/Tokyo",

"node": {
"supportPolicy": ["lts_latest"]
},

"packageRules": [
{
"paths": ["+(package.json)"],
"postUpdateOptions": ["yarnDedupeFewer"]
},
{
"paths": ["+(package.json)"],
"updateTypes": ["major"],
"groupName": "npm major updates",
"groupSlug": "npm-major-updates"
},
{
"paths": ["+(package.json)"],
"updateTypes": ["patch", "minor"],
"groupName": "patch & minor npm updates",
"groupSlug": "npm-patch-minor-updates",
"prPriority": -1
},

{
"datasources": ["docker"],
"updateTypes": ["major"],
"groupName": "docker major",
"additionalBranchPrefix": "test1-"
},
{
"datasources": ["docker"],
"updateTypes": ["patch", "minor"],
"groupName": "docker minor",
"additionalBranchPrefix": "test2-"
}
]
}

0 comments on commit dc1ed3b

Please sign in to comment.