Skip to content

Commit

Permalink
Update service templates (#352)
Browse files Browse the repository at this point in the history
* Update service versions

* Fix Spring template

* Fix Node template

* Fix MariaDB template
  • Loading branch information
marcauberer committed Jun 30, 2022
1 parent b96702a commit b2ac475
Show file tree
Hide file tree
Showing 42 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion predefined-services/backend/adguard-home/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{
"text": "Which version of AdGuard Home do you want to use?",
"type": 2,
"defaultValue": "0.107.6",
"defaultValue": "0.107.7",
"variable": "ADGUARD_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/django/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
{
"text": "Which Django version do you want to use?",
"type": 2,
"defaultValue": "4.0.4",
"defaultValue": "4.0.5",
"variable": "DJANGO_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/fastapi/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
{
"text": "Which FastAPI version do you want to use?",
"type": 2,
"defaultValue": "0.75.2",
"defaultValue": "0.78.0",
"variable": "FASTAPI_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/flask/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
{
"text": "Which Flask version do you want to use?",
"type": 2,
"defaultValue": "2.1.1",
"defaultValue": "2.1.2",
"variable": "FLASK_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/minecraft-server/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
{
"text": "Which version of Minecraft do you want to use?",
"type": 2,
"defaultValue": "1.18",
"defaultValue": "1.19",
"variable": "MINECRAFT_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/nexus/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Nexus do you want to use?",
"type": 2,
"defaultValue": "3.38.1",
"defaultValue": "3.40.1",
"variable": "NEXUS_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/node/backend-node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /app
RUN apk update && apk add bash curl npm && rm -rf /var/cache/apk/*

# Download node-prune
RUN curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /usr/local/bin
RUN curl -sf https://gobinaries.com/tj/node-prune | sh

COPY package*.json ./
RUN npm i
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/node/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{
"text": "Which version of Node do you want to use?",
"type": 2,
"defaultValue": "17.9",
"defaultValue": "18.4",
"variable": "NODE_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/pi-hole/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{
"text": "Which version of Pi-hole do you want to use?",
"type": 2,
"defaultValue": "2022.04.2",
"defaultValue": "2022.05",
"variable": "PI_HOLE_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/plex/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Plex do you want to use?",
"type": 2,
"defaultValue": "1.25.9",
"defaultValue": "1.27.1",
"variable": "PLEX_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/prometheus/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Prometheus do you want to use?",
"type": 2,
"defaultValue": "2.34.0",
"defaultValue": "2.36.2",
"variable": "PROMETHEUS_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/rocket/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{
"text": "Which version of Rust do you want to use?",
"type": 2,
"defaultValue": "1.60",
"defaultValue": "1.61",
"variable": "ROCKET_RUST_VERSION"
}
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder
FROM gradle:7.2-jdk17 AS builder
FROM gradle:7.4-jdk18 AS builder
WORKDIR /server
COPY *.gradle *.kts ./
RUN gradle build -q || return 0
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/spring-gradle/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{
"text": "Spring version",
"type": 2,
"defaultValue": "2.6.6",
"defaultValue": "2.7.1",
"variable": "SPRING_GRADLE_VERSION"
},
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder
FROM maven:3.8-jdk-11 AS builder
FROM maven:3.8-openjdk-18 AS builder
WORKDIR /server
COPY pom.xml /server/pom.xml
RUN mvn dependency:go-offline -q
Expand All @@ -11,8 +11,8 @@ WORKDIR /server/target/dependency
RUN jar -xf ../*.jar


# Minimalistic images
FROM openjdk:11-jre-slim
# Minimalistic image
FROM openjdk:18-alpine
EXPOSE 8080
ARG DEPENDENCY=/server/target/dependency
COPY --from=builder ${DEPENDENCY}/BOOT-INF/lib /app/lib
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/backend/spring-maven/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
{
"text": "Spring version",
"type": 2,
"defaultValue": "2.6.6",
"defaultValue": "2.7.1",
"variable": "SPRING_MAVEN_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/elasticsearch/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which Elasticsearch version do you want to use?",
"type": 2,
"defaultValue": "8.1.2",
"defaultValue": "8.2.3",
"variable": "ELASTICSEARCH_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/faunadb/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{
"text": "Which FaunaDB version do you want to use?",
"type": 2,
"defaultValue": "4.11.0",
"defaultValue": "4.15.0",
"variable": "FAUNADB_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/influxdb/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
{
"text": "Which InfluxDB version do you want to use?",
"type": 2,
"defaultValue": "2.2",
"defaultValue": "2.3",
"variable": "INFLUXDB_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/meilisearch/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{
"text": "Which version of Meilisearch do you want to use?",
"type": 2,
"defaultValue": "v0.26.1",
"defaultValue": "v0.27.2",
"variable": "MEILISEARCH_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/neo4j/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{
"text": "Which Neo4j version do you want to use?",
"type": 2,
"defaultValue": "4.4.5",
"defaultValue": "4.4.8",
"variable": "NEO4J_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/postgres/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{
"text": "Which Postgres version do you want to use?",
"type": 2,
"defaultValue": "14.2",
"defaultValue": "14.4",
"variable": "POSTGRES_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/questdb/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
{
"text": "Which QuestDB version do you want to use?",
"type": 2,
"defaultValue": "6.2",
"defaultValue": "6.4.2",
"variable": "QUESTDB_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/redis/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which Redis version do you want to use?",
"type": 2,
"defaultValue": "6.2",
"defaultValue": "7.0",
"variable": "REDIS_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/database/scylladb/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
{
"text": "Which ScyllaDB version do you want to use?",
"type": 2,
"defaultValue": "4.6.2",
"defaultValue": "4.6.3",
"variable": "SCYLLADB_VERSION",
"advanced": true
},
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/bitbucket/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
{
"text": "Which version of BitBucket do you want to use?",
"type": 2,
"defaultValue": "7.21",
"defaultValue": "8.2",
"variable": "BITBUCKET_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/drupal/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Drupal do you want to use?",
"type": 2,
"defaultValue": "9.3",
"defaultValue": "9.4",
"variable": "DRUPAL_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/ghost/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{
"text": "Which version of Ghost do you want to use?",
"type": 2,
"defaultValue": "4.41",
"defaultValue": "5.2",
"variable": "GHOST_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/gitlab/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
{
"text": "Which version of GitLab do you want to use?",
"type": 2,
"defaultValue": "14.9.3",
"defaultValue": "15.1.0",
"variable": "GITLAB_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/grafana/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Grafana do you want to use?",
"type": 2,
"defaultValue": "8.4.6",
"defaultValue": "9.0.2",
"variable": "GRAFANA_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/jira/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which version of Jira do you want to use?",
"type": 2,
"defaultValue": "8.22",
"defaultValue": "9.0",
"variable": "JIRA_VERSION",
"advanced": true
},
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/jupyter/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{
"text": "Which version of Jupyter do you want to use?",
"type": 2,
"defaultValue": "6.4.10",
"defaultValue": "6.4.12",
"variable": "JUPYTER_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/matomo/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which version of Matomo do you want to use?",
"type": 2,
"defaultValue": "4.9",
"defaultValue": "4.10",
"variable": "MATOMO_VERSION"
}
]
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/mediawiki/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Mediawiki do you want to use?",
"type": 2,
"defaultValue": "1.37",
"defaultValue": "1.38",
"variable": "MEDIAWIKI_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/nextcloud/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which version of Nextcloud do you want to use?",
"type": 2,
"defaultValue": "23.0",
"defaultValue": "24.0",
"variable": "NEXTCLOUD_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/openproject/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which version of OpenProject do you want to use?",
"type": 2,
"defaultValue": "12.0",
"defaultValue": "12.1",
"variable": "OPENPROJECT_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/overleaf/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
{
"text": "Which version of Overleaf do you want to use?",
"type": 2,
"defaultValue": "3.0",
"defaultValue": "3.1",
"variable": "OVERLEAF_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/uptime-kuma/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of Uptime Kuma do you want to use?",
"type": 2,
"defaultValue": "1.14.0",
"defaultValue": "1.17.1",
"variable": "UPTIME_KUMA_VERSION"
}
],
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/wordpress/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"text": "Which version of Wordpress do you want to use?",
"type": 2,
"defaultValue": "5.9",
"defaultValue": "6.0",
"variable": "WORDPRESS_VERSION"
},
{
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/frontend/youtrack/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{
"text": "Which version of YouTack do you want to use (latest not available)?",
"type": 2,
"defaultValue": "2022.1.45133",
"defaultValue": "2022.1.46592",
"variable": "YOUTRACK_VERSION",
"advanced": true
}
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/proxy/nginx/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
{
"text": "Which version of of JWilder Nginx Proxy do you want to use?",
"defaultValue": "0.8.0",
"defaultValue": "1.0.1",
"type": 2,
"variable": "JWILDER_PROXY_VERSION",
"advanced": true
Expand Down
2 changes: 1 addition & 1 deletion predefined-services/proxy/traefik/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
{
"text": "Which version of of Traefik Proxy do you want to use?",
"defaultValue": "2.6.3",
"defaultValue": "2.8.0",
"type": 2,
"variable": "TRAEFIK_PROXY_VERSION",
"advanced": true
Expand Down

0 comments on commit b2ac475

Please sign in to comment.