repo_name
stringlengths
1
62
dataset
stringclasses
1 value
lang
stringclasses
11 values
pr_id
int64
1
20.1k
owner
stringlengths
2
34
reviewer
stringlengths
2
39
diff_hunk
stringlengths
15
262k
code_review_comment
stringlengths
1
99.6k
timefold-quickstarts
github_2023
others
36
TimefoldAI
rsynek
@@ -0,0 +1,129 @@ +name: Release +on: + workflow_dispatch: + inputs: + version: + description: 'Community Edition version (e.g. 1.0.0)' + required: true + developmentBranch: + description: 'Development branch to cut the release from' + default: development + required: tr...
There is a better way of getting the project version; see the accepted answer: https://stackoverflow.com/questions/3545292/how-to-get-maven-project-version-to-the-bash-command-line
timefold-quickstarts
github_2023
others
36
TimefoldAI
rsynek
@@ -0,0 +1,129 @@ +name: Release +on: + workflow_dispatch: + inputs: + version: + description: 'Community Edition version (e.g. 1.0.0)' + required: true + developmentBranch: + description: 'Development branch to cut the release from' + default: development + required: tr...
The version replacement deserves a standalone script; especially if we repeat the same steps for the micro version below.
timefold-quickstarts
github_2023
others
24
TimefoldAI
ge0ffrey
@@ -167,6 +167,65 @@ <quarkus.package.type>native</quarkus.package.type> </properties> </profile> + <profile> + <id>container</id> + <activation> + <property> + <name>container</name> + </property> + </activation> + <properties> + <container.runt...
Is there a specialized docker maven plugin (the jib plugin maybe?) who can reduce the boilerplate in this exec approach, and avoid relying on installed programs in the environment?
timefold-quickstarts
github_2023
others
24
TimefoldAI
ge0ffrey
@@ -0,0 +1,31 @@ +#!/bin/sh + +# Change directory to the directory of the script +cd "$(dirname $0)" || exit + +jvmOptions="-Xms128m -Xmx512m -Dstartup-open-browser=true" +mainJar="quickstarts/binaries/quarkus-app/quarkus-run.jar" + +echo "Usage: ./runQuickstarts.sh" +echo "Notes:" +echo "- Java 11 or higher must be in...
We're minimum java 17
timefold-quickstarts
github_2023
others
27
TimefoldAI
triceo
@@ -106,11 +106,6 @@ <version>5.2.3</version> <scope>runtime</scope> </dependency> - <dependency> - <groupId>org.webjars</groupId> - <artifactId>popper.js</artifactId> - <version>1.16.0</version>
Are you entirely sure about this? JQuery typically brings this, but there is no way to check that it does unless you've actually checked that dropdowns work in the UI.
timefold-quickstarts
github_2023
java
27
TimefoldAI
triceo
@@ -62,9 +62,9 @@ public String solve(VehicleRoutePlan problem) { jobId_ -> jobIdToJob.get(jobId).routePlan, solution -> jobIdToJob.put(jobId, Job.newRoutePlan(solution)), (jobId_, exception) -> { - jobIdToJob.put(jobId, Job.error(jobId_, exception)); - ...
How did this escape auto-formatting in CI?
timefold-quickstarts
github_2023
others
27
TimefoldAI
triceo
@@ -29,7 +29,7 @@ quarkus.log.category."ai.timefold.solver".level=DEBUG %prod.quarkus.log.category."ai.timefold.solver".level=INFO # XML file for power tweaking, defaults to solverConfig.xml (directly under src/main/resources) -# quarkus.timefold.solver-config-xml=org/.../timeTableSolverConfig.xml +# quarkus.timefo...
I see property change, but no file name change in the PR. Does that mean the file doesn't exist and this is just an example?
timefold-quickstarts
github_2023
javascript
27
TimefoldAI
triceo
@@ -322,15 +275,15 @@ function replaceQuickstartTimefoldAutoHeaderFooter() { <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> - <ul class="navbar-nav"> + <ul class="nav nav-pills">
I absolutely hate that this happens in JS. Without JS, this simply doesn't happen. Key parts of the UI are not going to be there. *This is wrong*. (Unfortunately, it is not new.)
timefold-quickstarts
github_2023
java
26
TimefoldAI
ge0ffrey
@@ -0,0 +1,170 @@ +package org.acme.vehiclerouting.domain; + +import java.util.List; +import java.util.stream.Stream; + +import ai.timefold.solver.core.api.domain.solution.PlanningEntityCollectionProperty; +import ai.timefold.solver.core.api.domain.solution.PlanningScore; +import ai.timefold.solver.core.api.domain.solu...
Interesting and good! This is a step forward, so let's add this indeed, but I do think we need a broader discussion to figure out the best way to do this.
timefold-quickstarts
github_2023
java
26
TimefoldAI
ge0ffrey
@@ -5,21 +5,22 @@ import java.util.Comparator; +import ai.timefold.solver.core.impl.heuristic.selector.common.decorator.SelectionSorterWeightFactory; + import org.acme.vehiclerouting.domain.Customer; import org.acme.vehiclerouting.domain.Depot; -import org.acme.vehiclerouting.domain.VehicleRoutingSolution; -impo...
(very soft) Weird code style?
timefold-quickstarts
github_2023
java
26
TimefoldAI
ge0ffrey
@@ -0,0 +1,30 @@ +package org.acme.vehiclerouting.rest; + +import jakarta.ws.rs.core.Response; + +public class VehicleRoutingSolverException extends RuntimeException {
I am ok with adding it for now, but I believe that custom Exceptions and ExeptionMapper etc are overkill for quickstarts. Less code is more easier to grok for users that quick start.
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -32,26 +34,36 @@ public class TimeTable { public TimeTable() { } - public TimeTable(List<Timeslot> timeslotList, List<Room> roomList, List<Lesson> lessonList) { - this.timeslotList = timeslotList; - this.roomList = roomList; - this.lessonList = lessonList; + public TimeTable(Ha...
The "status only" version could probably use the name field too
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,217 @@ +package org.acme.schooltimetabling.service; + +import java.time.DayOfWeek; +import java.time.LocalTime; +import java.util.ArrayList; +import java.util.List; + +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.PathParam; +import jakarta.ws.rs.core.MediaType; +import jakarta....
Nitpick: I prefer to keep the java parameter name and the url parameter the same name if they are the same ```suggestion @Path("/{dataSetId}") public Response generate(@Parameter(description = "Unique identifier of the demo data set.", required = true) @PathParam("dataSetId") String dataSetId) {...
timefold-quickstarts
github_2023
others
18
TimefoldAI
ge0ffrey
@@ -9,170 +9,117 @@ <link rel="icon" href="/webjars/timefold/img/timefold-favicon.svg" type="image/svg+xml"> </head> <body> -<header id="timefold-auto-header"></header> -<div class="container"> - <div class="sticky-top d-flex justify-content-center align-items-center" aria-live="polite" aria-atomic="true"> - ...
The bundle version is bad IIRC. But jquery needs to be first
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -22,24 +29,54 @@ public class TimeTableResourceTest { @Test public void solveDemoDataUntilFeasible() { - given() + TimeTable testTimeTable = createTestTimeTable();
Instead of creating a testdata one manually, can we get it from the demo data resource? That way, that get's tested too (less chances the UI breaks) and any refactors in the model don't need changes in this file (= more maintenance friendly)
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -8,31 +8,58 @@ import jakarta.ws.rs.GET; import jakarta.ws.rs.Path; import jakarta.ws.rs.PathParam; +import jakarta.ws.rs.core.MediaType; +import jakarta.ws.rs.core.Response; import org.acme.schooltimetabling.domain.Lesson; import org.acme.schooltimetabling.domain.Room; import org.acme.schooltimetabling.domain...
In the quickstarts, I wouldn't bother with Response objects. It just makes it more complex. Just return TimeTable type and throw an IllegalArgumentException. Let the default exception handlers turn it into a 500 (which is good enough). => Less code to grok for users.
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,217 @@ +package org.acme.schooltimetabling.service; + +import java.time.DayOfWeek; +import java.time.LocalTime; +import java.util.ArrayList; +import java.util.List; + +import jakarta.ws.rs.GET; +import jakarta.ws.rs.Path; +import jakarta.ws.rs.PathParam; +import jakarta.ws.rs.core.MediaType; +import jakarta....
n the quickstarts, I wouldn't bother with Response objects. It just makes it more complex. Just return TimeTable type and throw an IllegalArgumentException. Let the default exception handlers turn it into a 500 (which is good enough). No need to open API document what happens that case. => Less code to grok for u...
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,165 @@ +package org.acme.schooltimetabling.service; + +import java.util.List; +import java.util.UUID; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +import ai.timefold.solver.core.api.solver.SolverManager; +import ai.timefold.solver.core.api.solver.SolverStatus...
Fair, unless we can standarize the all solutions as the word "schedule". To be discussed later. (I think we might, but out of scope for this refactor).
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,165 @@ +package org.acme.schooltimetabling.service; + +import java.util.List; +import java.util.UUID; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +import ai.timefold.solver.core.api.solver.SolverManager; +import ai.timefold.solver.core.api.solver.SolverStatus...
See my comment above.
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,165 @@ +package org.acme.schooltimetabling.service; + +import java.util.List; +import java.util.UUID; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +import ai.timefold.solver.core.api.solver.SolverManager; +import ai.timefold.solver.core.api.solver.SolverStatus...
add `// TODO Replace with .terminateEarlyAndWait(... [, timeout]) <url-to-issue>`
timefold-quickstarts
github_2023
java
18
TimefoldAI
ge0ffrey
@@ -0,0 +1,165 @@ +package org.acme.schooltimetabling.service; + +import java.util.List; +import java.util.UUID; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +import ai.timefold.solver.core.api.solver.SolverManager; +import ai.timefold.solver.core.api.solver.SolverStatus...
// TODO there is no time to live, so this map grows out of memory
WuKongIM
github_2023
go
218
WuKongIM
tangtaoit
@@ -356,6 +376,10 @@ func (w *webhook) sendWebhookForGRPC(event string, data []byte) error { startNow := time.Now() startTime := startNow.UnixNano() / 1000 / 1000 w.Debug("webhook grpc 开始请求", zap.String("event", event)) + if !w.isEventFocused(event) { // 如果不关注事件就不走后边的推送逻辑 + w.Debug("webHook grpc 非关注事件,不推送", zap....
webHook 统一都用webhook
WuKongIM
github_2023
go
218
WuKongIM
tangtaoit
@@ -387,6 +411,14 @@ func (w *webhook) sendWebhookForGRPC(event string, data []byte) error { return nil } +func (w *webhook) isEventFocused(event string) bool { + if w.focusEvents == nil || len(w.focusEvents) == 0 {
len(w.focusEvents) == 0 即可
rinf
github_2023
others
349
cunarist
temeddix
@@ -7,13 +7,18 @@ use super::interface_os::*; #[cfg(target_family = "wasm")] use super::interface_web::*; +#[cfg(feature = "bevy")] +use bevy_ecs::event::Event; + /// This is a mutable cell type that can be shared across threads. pub type SharedCell<T> = OnceLock<Mutex<RefCell<Option<T>>>>; /// This contains a...
A small request here, do you mind change the sentence to: If the `bevy` feature is used, every message can be received as an event in Bevy.
rinf
github_2023
others
349
cunarist
temeddix
@@ -6,10 +6,14 @@ use super::interface_os::*; #[cfg(target_family = "wasm")] use super::interface_web::*; +#[cfg(feature = "bevy")] +use bevy_ecs::event::Event; /// This contains a message from Dart. /// Optionally, a custom binary called `binary` can also be included. /// This type is generic, and the message ...
Is it okay to write these as one line? ``` #[cfg_attr(feature = "bevy", derive(bevy_ecs::event::Event))] ```
rinf
github_2023
others
285
cunarist
temeddix
@@ -1,17 +1,37 @@ +use clap::Parser; + +#[derive(Parser, Debug)] +struct Args { + dart_args: Vec<String>, + #[arg(short, long)] + protoc_path: Option<String>, +} + #[cfg(not(target_family = "wasm"))] fn main() { use std::env; use std::fs; use std::path; + use std::path::PathBuf; use st...
Yeah, I think it's a good idea to do it :)
rinf
github_2023
others
267
cunarist
temeddix
@@ -0,0 +1,120 @@ +import 'dart:io'; + +import 'package:yaml/yaml.dart'; + +class RinfConfigMessage { + final String inputDir; + final String rustOutputDir; + final String dartOutputDir; + + RinfConfigMessage._({ + required this.inputDir, + required this.rustOutputDir, + required this.dartOutputDir, + });...
My assumption is that we might need to add slash at the back or the front to make it align with all other code, but not sure right now. Maybe currently, the proto file can be generated like `lib/messagescounter_number.proto`. I should investigate more.
rinf
github_2023
cpp
114
cunarist
temeddix
@@ -31,6 +31,11 @@ bool FlutterWindow::OnCreate() { this->Show(); }); + // Flutter can complete the first frame before the "show window" callback is + // registered. The following call ensures a frame is pending to ensure the + // window is shown. It is a no-op if the first frame hasn't completed yet. + f...
May I ask you where this line came from? Is it from new Flutter 3.13 default template or something?
rinf
github_2023
others
99
cunarist
temeddix
@@ -58,9 +58,10 @@ android { } } +def target = new File(rootProject.projectDir.parent) // Include Rust crates in the build process -apply from: "../connectors/cargokit/gradle/plugin.gradle" +apply from: "../cargokit/gradle/plugin.gradle" cargokit { - manifestDir = "${rootProject.projectDir}/../native/hub" ...
For this one, I'll test it with an actual Flutter project that I'm working on, which is inside totally different directory :)
rinf
github_2023
others
99
cunarist
temeddix
@@ -468,6 +468,18 @@ We appreciate your contribution to the development of this project! [![GitHub contributors (via allcontributors.org)](https://contrib.rocks/image?repo=cunarist/rust-in-flutter)](https://github.com/cunarist/rust-in-flutter/graphs/contributors) +# 👏 Thanks + +These are tools for connecting Flut...
I personally think it would be better to move this to 'discussions' in Github in 'announcements' category. I will also handle this :)
rinf
github_2023
others
91
cunarist
temeddix
@@ -22,11 +22,11 @@ Designed for ease of use, future scalability, and unparalleled performance, this All the challenging build settings are automatically handled by this package. -| Platform \ Target | Android | iOS/iPadOS | Linux | macOS | Windows | Web | -| ----------------- | ------- | ---------- | ----- | ----...
This means 'Dev platform', which points to linux/window/macos below. I made this change because I thought the column names should represent things 'below', not 'sideways'. I will change the name to 'Dev OS' just to make it more clear. I wanted it to be shorter, too :)
rinf
github_2023
others
91
cunarist
temeddix
@@ -1,6 +1,11 @@ -[English Guide](https://github.com/cunarist/rust-in-flutter/blob/main/README.md) · [한국어 설명서](https://github.com/cunarist/rust-in-flutter/blob/main/translations/KO.md) · [中文文档](https://github.com/cunarist/rust-in-flutter/blob/main/translations/ZH.md) · [日本語ガイド](https://github.com/cunarist/rust-in-flutt...
Using 'relative path' for translations will work well on GitHub, but might break the links on pub.dev, though I'm not 100% sure. Was this intentional? <img width="519" alt="image" src="https://github.com/cunarist/rust-in-flutter/assets/66480156/1f472116-b15e-4208-aa51-5f55f2532b46">
rinf
github_2023
others
91
cunarist
temeddix
@@ -38,6 +52,32 @@ jobs: - name: Checkout submodules run: git submodule update --init --recursive + # Automatic setup cache(Doesn't work ) + # - name: Setup Nix + # if: matrix.runner == 'ubuntu-latest' || matrix.runner == 'macos-latest' + # uses: DeterminateSystems/nix-install...
Also, are these comments intented? May I ask you the purpose?
vite-rsc
github_2023
typescript
7
cyco130
cyco130
@@ -20,7 +20,7 @@ export function removeRscQuery(id: string) { .filter((part) => !part.match(/rsc($|=)/)) .join("&"); - if (newQuery) return base; + if (!newQuery) return base;
Definitely looks like one
vite-rsc
github_2023
others
7
cyco130
cyco130
@@ -8,6 +8,7 @@ ], "exports": { "./entry-server": "./src/entry-server.ts", + "./streams": "./src/server/streams.tsx",
Sure, we just didn't organize well yet :)
big-bear-casaos
github_2023
others
3,205
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,162 @@ +# Configuration for libredesk setup + +# Name of the big-bear-libredesk application +name: big-bear-libredesk + +# Service definitions for the big-bear-libredesk application +services: + # Service name: big-bear-libredesk + # The `big-bear-libredesk` service definition + big-bear-libredesk: + #...
_⚠️ Potential issue_ **CasaOS Specification Consistency for Service** The CasaOS metadata provided for the `big-bear-libredesk` service is useful. However, there is a discrepancy: - The volume mounts bind `/DATA/AppData/$AppID/config` to `/libredesk/config`, yet the CasaOS configuration specifies a container path of ...
big-bear-casaos
github_2023
others
3,133
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,63 @@ +name: big-bear-jlesage-handbrake # Name of the CasaOS application + +services: + big-bear-jlesage-handbrake: + container_name: big-bear-jlesage-handbrake # Name of the Docker container + image: jlesage/handbrake:v25.02.3 # Docker image for the Handbrake + ports: + - "5800:5800" # Expose...
_🛠️ Refactor suggestion_ **CasaOS-Specific Configuration Comment Accuracy.** The CasaOS-specific configuration block is comprehensive, detailing environment variables, port mappings, and volume descriptions. However, the comment on line 17 states “CasaOS specific configuration for the brave service” which seems to ...
big-bear-casaos
github_2023
others
3,099
bigbeartechworld
coderabbitai[bot]
@@ -102,13 +106,14 @@ services: big-bear-owncloud-db: container_name: big-bear-owncloud-db - image: mariadb:10.6 # minimum required ownCloud version is 10.9 + image: mariadb:10.6 restart: unless-stopped environment: - MYSQL_ROOT_PASSWORD=f01914eb-2be3-4164-a57c-08e6518f313a - MYS...
_⚠️ Potential issue_ **Sensitive Credentials in Environment Variables** Static analysis detected hardcoded credentials for MySQL (e.g., `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD`) in the environment variables. Hardcoding such sensitive information can lead to security vulnerabilities. Consider using Docker secrets or...
big-bear-casaos
github_2023
others
3,099
bigbeartechworld
coderabbitai[bot]
@@ -117,14 +122,14 @@ services: "mysqladmin", "ping", "-u", - "root", + "bigbear", "--password=f01914eb-2be3-4164-a57c-08e6518f313a",
_⚠️ Potential issue_ **Hardcoded Password in Healthcheck Command** The healthcheck command includes a hardcoded password (`--password=f01914eb-2be3-4164-a57c-08e6518f313a`), which can expose sensitive information. It is recommended to use a more secure mechanism (such as environment variable substitution or Docker se...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
_:warning: Potential issue_ **Critical: Replace hardcoded credentials with secure alternatives** Several security concerns need to be addressed: 1. The `SECRET_KEY_BASE` is set to a literal string "SECRET_KEY_BASE" which is insecure 2. Database password is hardcoded in the compose file Consider using environment va...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
_:hammer_and_wrench: Refactor suggestion_ **Enhance PostgreSQL service security and reliability** Several improvements are recommended for the database service: 1. The database credentials are hardcoded (already mentioned above) 2. No resource limits are set 3. No backup volume is configured 4. Database is accessibl...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
_:hammer_and_wrench: Refactor suggestion_ **Add resource constraints to prevent container abuse** The app service lacks memory and CPU limits, which could lead to resource exhaustion. Add resource limits: ```diff app: container_name: big-bear-maybe-finance + deploy: + resources: + limits: + ...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app:
Change app to: `big-bear-maybe-finance`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
For database password's I've been generating UUID V4.
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup
Change the peppermint to maybe-finance
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application
Change the big-bear-peppermint to big-bear-maybe-finance
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change default to `big_bear_maybe_finance_network`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change to `big-bear-maybe-finance-postgres`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change to `big-bear-maybe-finance-postgres`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change to `big-bear-maybe-finance-postgres`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change default to `big_bear_maybe_finance_network`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change default to `big_bear_maybe_finance_network`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change to `big-bear-maybe-finance`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-peppermint application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-peppermint application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_...
Change to the generated UUID V4 that you generated in the `big-bear-maybe-finance` service.
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -0,0 +1,8 @@ +{ + "id": "MaybeFinance", + "version": "0.1.0",
Change to: `sha-9522a191de1f258d76ed996ba1c84e3a0629dd80` or BigBearCI will not pass.
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
dragonfire1119
@@ -201,7 +201,7 @@ services: # Definition of networks used in the services networks: - default: + big_bear_maybe_finance_network: # Custom name for the default network name: maybe_network
Change name to: `big_bear_maybe_finance_network`
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-maybe-finance application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-maybe-finance application +services: + # Service name: app + # The `app` service definition + big-bear-maybe-finance: + # Name of the ...
_:warning: Potential issue_ **Fix network name inconsistency** The network name doesn't match its usage in the services: - Defined as: `maybe_network` - Used as: `big_bear_maybe_finance_network` ```diff networks: big_bear_maybe_finance_network: - name: maybe_network + name: big_bear_maybe_finance_network ``` ...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-maybe-finance application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-maybe-finance application +services: + # Service name: app + # The `app` service definition + big-bear-maybe-finance: + # Name of the ...
_:hammer_and_wrench: Refactor suggestion_ **Add health check and resource constraints to the application service** The service configuration should include: 1. Health check to ensure the application is ready 2. Resource limits to prevent container resource exhaustion ```diff big-bear-maybe-finance: container_...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-maybe-finance application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-maybe-finance application +services: + # Service name: app + # The `app` service definition + big-bear-maybe-finance: + # Name of the ...
_:hammer_and_wrench: Refactor suggestion_ **Add health check and resource constraints** The service should include: 1. Health check to ensure the application is ready 2. Resource limits to prevent container resource exhaustion ```diff big-bear-maybe-finance: container_name: big-bear-maybe-finance image: g...
big-bear-casaos
github_2023
others
2,021
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,274 @@ +# Configuration for peppermint setup + +# Name of the big-bear-maybe-finance application +name: big-bear-maybe-finance + +# Service definitions for the big-bear-maybe-finance application +services: + # Service name: app + # The `app` service definition + big-bear-maybe-finance: + # Name of the ...
_:warning: Potential issue_ **Critical: Replace hardcoded credentials with environment variables** The credentials are still hardcoded in the compose file, which is a security risk. This includes: - `SECRET_KEY_BASE` set to literal "SECRET_KEY_BASE" - Database credentials hardcoded ```diff - SECRET_KEY_BASE: S...
big-bear-casaos
github_2023
others
1,634
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,90 @@ +# Configuration for Jenkins setup + +# Name of the big-bear-jenkins application +name: big-bear-jenkins + +# Service definitions for the big-bear-jenkins application +services: + # Service name: big-bear-jenkins + # The `big-bear-jenkins` service definition + big-bear-jenkins: + # Name of the co...
_:bulb: Codebase verification_ **Thumbnail Image Missing** The thumbnail image specified in the configuration does not exist at the provided URL. Please add a valid thumbnail image to enhance the app's visual representation in the CasaOS interface. Additionally, consider the following suggestions: - **Category:** ...
big-bear-casaos
github_2023
others
1,634
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,90 @@ +# Configuration for Jenkins setup + +# Name of the big-bear-jenkins application +name: big-bear-jenkins + +# Service definitions for the big-bear-jenkins application +services: + # Service name: big-bear-jenkins + # The `big-bear-jenkins` service definition + big-bear-jenkins: + # Name of the co...
_:bulb: Codebase verification_ _:hammer_and_wrench: Refactor suggestion_ **Make Environment Variables Configurable and Address Potential Syntax Issues** The environment variables `PUID`, `PGID`, and `TZ` in `Apps/jenkins/docker-compose.yml` are currently set to fixed values. To enhance flexibility and adaptability ...
big-bear-casaos
github_2023
others
1,634
bigbeartechworld
dragonfire1119
@@ -0,0 +1,90 @@ +# Configuration for Jenkins setup + +# Name of the big-bear-jenkins application +name: big-bear-jenkins + +# Service definitions for the big-bear-jenkins application +services: + # Service name: big-bear-jenkins + # The `big-bear-jenkins` service definition + big-bear-jenkins: + # Name of the co...
This needs to be `/DATA/AppData/$AppID/jenkins_home`
big-bear-casaos
github_2023
others
1,634
bigbeartechworld
dragonfire1119
@@ -0,0 +1,90 @@ +# Configuration for Jenkins setup + +# Name of the big-bear-jenkins application +name: big-bear-jenkins + +# Service definitions for the big-bear-jenkins application +services: + # Service name: big-bear-jenkins + # The `big-bear-jenkins` service definition + big-bear-jenkins: + # Name of the co...
Remove the volumes. CasaOS doesn't support it.
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm
This needs to be `big-bear-otel-lgtm`
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm + +# Service definitions for otel-lgtm application +services: + # Service name: otel-lgtm + # The `otel-lgtm` service definition + otel-lgtm:
This needs to be `big-bear-otel-lgtm`
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm + +# Service definitions for otel-lgtm application +services: + # Service name: otel-lgtm + # The `otel-lgtm` service definition + otel-lgtm: + # Name of the container + container_name: otel-lgtm
This needs to be `big-bear-otel-lgtm`
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm + +# Service definitions for otel-lgtm application +services: + # Service name: otel-lgtm + # The `otel-lgtm` service definition + otel-lgtm: + # Name of the container + container_name: otel-lgtm + + ...
This needs to be `big-bear-otel-lgtm-network`
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm + +# Service definitions for otel-lgtm application +services: + # Service name: otel-lgtm + # The `otel-lgtm` service definition + otel-lgtm: + # Name of the container + container_name: otel-lgtm + + ...
This needs to be `big-bear-otel-lgtm-network`
big-bear-casaos
github_2023
others
2,802
bigbeartechworld
dragonfire1119
@@ -0,0 +1,118 @@ +# Configuration for otel-lgtm setup + +# Name of the otel-lgtm application +name: otel-lgtm + +# Service definitions for otel-lgtm application +services: + # Service name: otel-lgtm + # The `otel-lgtm` service definition + otel-lgtm: + # Name of the container + container_name: otel-lgtm + + ...
This needs to be `big-bear-otel-lgtm`
big-bear-casaos
github_2023
others
2,646
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,123 @@ +# Configuration for lyrionmusicserver setup + +# Name of the big-bear-lyrionmusicserver application +name: big-bear-lyrionmusicserver + +# Service definitions for the big-bear-lyrionmusicserver application +services: + # Service name: big-bear-lyrionmusicserver + # The `big-bear-lyrionmusicserver` ...
_:warning: Potential issue_ **Fix incorrect application description.** The current description appears to be copied from Homarr dashboard application. Please update it with the correct description for LyriOn Music Server. ```diff description: en_us: > - Simplify the management of your server with Ho...
big-bear-casaos
github_2023
others
2,616
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,88 @@ +# Configuration for unms setup + +# Name of the big-bear-unms application +name: big-bear-unms
_:hammer_and_wrench: Refactor suggestion_ **Ensure naming consistency across the configuration.** The application name `big-bear-unms` differs from the service name `big-bear-uisp`. Consider using consistent naming to avoid confusion, preferably using `uisp` as it's the current official name of the product. ```diff ...
big-bear-casaos
github_2023
others
2,555
bigbeartechworld
coderabbitai[bot]
@@ -2,7 +2,7 @@ "id": "pterodactyl-wings", "version": "1.11.13", "image": "ghcr.io/pterodactyl/wings", - "youtube": "", + "youtube": "https://youtu.be/p_140cc6_1g",
_:bulb: Codebase verification_ **Consider separate tutorial videos for Panel and Wings** While both components are part of the Pterodactyl system, separate tutorials would better serve users by: - Providing focused guidance for each component's specific setup and configuration - Making it easier to find relevant in...
big-bear-casaos
github_2023
others
2,548
bigbeartechworld
coderabbitai[bot]
@@ -8,29 +8,24 @@ services: # Service name: big-bear-romm # The `big-bear-romm` service definition big-bear-romm: - image: rommapp/romm:3.7.0-alpha.1 # Docker image for the application + image: rommapp/romm:3.7.0 # Docker image for the application container_name: big-bear-romm environment: ...
_:hammer_and_wrench: Refactor suggestion_ **New metadata provider configuration added** Good addition of optional metadata providers with documentation links. However, the environment variables in the x-casaos section haven't been updated to include these new options. Add the following environment variables to the x...
big-bear-casaos
github_2023
others
2,548
bigbeartechworld
dragonfire1119
@@ -1,8 +1,8 @@ { - "id": "Romm", - "version": "3.7.0-alpha.1", - "image": "zurdi15/romm", + "id": "RomM",
This must be `Romm` because it should match the directory.
big-bear-casaos
github_2023
others
2,548
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,196 @@ +# Configuration for romm setup + +# Name of the big-bear-romm application +name: big-bear-romm + +# Service definitions for the big-bear-romm application +services: + # Service name: big-bear-romm + # The `big-bear-romm` service definition + big-bear-romm: + image: rommapp/romm:3.7.0 # Docker i...
_:hammer_and_wrench: Refactor suggestion_ **Review database security configuration.** Consider the following security recommendations: 1. Avoid hardcoding database credentials 2. Use stronger passwords than "casaos" Consider using environment variables or Docker secrets for database credentials. <!-- This is an aut...
big-bear-casaos
github_2023
others
2,548
bigbeartechworld
dragonfire1119
@@ -174,6 +173,7 @@ If you have a suggestion for an app, please post in the [BigBearCommunity](https | reactive-resume | amruthpillai/reactive-resume | 4.1.8 | | | | retroarch-web | inglebard/retroarch-web | latest | | | | rocket-chat | rocket.chat | 6.13.1 | | | +| romm | rommapp/romm | 3.7.0 | | [Docs](http...
The README gets autogenerated only files need changes are in the Apps directory.
big-bear-casaos
github_2023
others
2,490
bigbeartechworld
coderabbitai[bot]
@@ -12,7 +12,7 @@ services: container_name: big-bear-seafile # Image to be used for the container - image: seafileltd/seafile-mc:12.0.6 + image: seafileltd/seafile-mc:11.0.6
_:warning: Potential issue_ **Review security implications of version downgrade** Two security concerns to address: 1. Verify if Seafile 11.0.6 has any known security vulnerabilities 2. The database root password is hardcoded in the configuration Recommendations: 1. Document any known security implications of using...
big-bear-casaos
github_2023
others
2,470
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,87 @@ +# Configuration for lobe-chat setup + +# Name of the big-bear-lobe-chat application +name: big-bear-lobe-chat + +# Service definitions for the big-bear-lobe-chat application +services: + # Service name: big-bear-lobe-chat + # The `big-bear-lobe-chat` service definition + big-bear-lobe-chat: + # ...
_:hammer_and_wrench: Refactor suggestion_ **Add validation for required environment variables** All environment variables are currently empty. Consider: 1. Documenting which variables are required vs optional 2. Adding validation in the application startup to check for required variables 3. Providing example values i...
big-bear-casaos
github_2023
others
2,468
bigbeartechworld
coderabbitai[bot]
@@ -22,10 +22,25 @@ services: environment: # Set to true to download security jar (required for authentication login) - DOCKER_ENABLE_SECURITY=false - + + # Set to true to enable login for authentication + - SECURITY_ENABLE_LOGIN=true + + # Set the initial admin username + -...
_:warning: Potential issue_ **Security: Move credentials to environment files** Storing credentials in version control, even if they're UUIDs, is a security risk. Consider: 1. Moving credentials to a `.env` file (added to .gitignore) 2. Using Docker secrets for sensitive data 3. Documenting the need to change default...
big-bear-casaos
github_2023
others
2,468
bigbeartechworld
coderabbitai[bot]
@@ -22,10 +22,25 @@ environment: # Set to true to download security jar (required for authentication login) - DOCKER_ENABLE_SECURITY=false - + + # Set to true to enable login for authentication + - SECURITY_ENABLE_LOGIN=true
_:warning: Potential issue_ **Resolve conflicting security settings** There's a contradiction in the security configuration: - `DOCKER_ENABLE_SECURITY=false` disables the security jar - `SECURITY_ENABLE_LOGIN=true` enables authentication - The documentation states that the security jar is required for authentication ...
big-bear-casaos
github_2023
others
2,243
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,78 @@ +# Configuration for playit-docker-web setup + +# Name of the big-bear-playit-docker-web application +name: big-bear-playit-docker-web + +# Service definitions for the big-bear-playit-docker-web application +services: + # Service name: big-bear-playit-docker-web + # The `big-bear-playit-docker-web` s...
_:warning: Potential issue_ **Fix incorrect main service reference** The main service is incorrectly set to `big-bear-cloudflared-web` instead of `big-bear-playit-docker-web`. This mismatch could cause issues with CasaOS service management. ```diff - main: big-bear-cloudflared-web + main: big-bear-playit-docker-we...
big-bear-casaos
github_2023
others
2,243
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,78 @@ +# Configuration for playit-docker-web setup + +# Name of the big-bear-playit-docker-web application +name: big-bear-playit-docker-web + +# Service definitions for the big-bear-playit-docker-web application +services: + # Service name: big-bear-playit-docker-web + # The `big-bear-playit-docker-web` s...
_:warning: Potential issue_ **Fix incorrect documentation link** The installation tips reference Cloudflared Web instead of Playit Docker Web. This appears to be a copy-paste error. ```diff before_install: en_us: | - Read this before installing: https://community.bigbeartechworld.com/t/added-cloudfl...
big-bear-casaos
github_2023
others
2,241
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,92 @@ +# Configuration for cloudflared-web setup + +# Name of the big-bear-cloudflared-web application +name: big-bear-cloudflared-web + +# Service definitions for the big-bear-cloudflared-web application +services: + # Service name: big-bear-cloudflared-web + # The `big-bear-cloudflared-web` service defin...
_:warning: Potential issue_ **Security: Empty basic auth password is a security risk** The `BASIC_AUTH_PASS` is set to an empty string, which effectively disables authentication when combined with the default admin username. This could expose the web UI to unauthorized access. Consider: 1. Making the password a requ...
big-bear-casaos
github_2023
others
2,241
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,92 @@ +# Configuration for cloudflared-web setup + +# Name of the big-bear-cloudflared-web application +name: big-bear-cloudflared-web + +# Service definitions for the big-bear-cloudflared-web application +services: + # Service name: big-bear-cloudflared-web + # The `big-bear-cloudflared-web` service defin...
_:warning: Potential issue_ **Add volume mounts for persistence** The configuration lacks volume mounts for persisting tunnel configurations and credentials. Without persistence, tunnel configurations will be lost when the container is recreated. Add volume mounts: ```diff container_name: big-bear-cloudflared-we...
big-bear-casaos
github_2023
others
2,241
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,92 @@ +# Configuration for cloudflared-web setup + +# Name of the big-bear-cloudflared-web application +name: big-bear-cloudflared-web + +# Service definitions for the big-bear-cloudflared-web application +services: + # Service name: big-bear-cloudflared-web + # The `big-bear-cloudflared-web` service defin...
_:bulb: Codebase verification_ **Community link is accessible, but installation tips need enhancement** The community link is valid and accessible (HTTP 200 response). However, the current setup lacks essential information directly in the compose file. Consider: - Adding basic inline setup instructions for quick ref...
big-bear-casaos
github_2023
others
2,241
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,92 @@ +# Configuration for cloudflared-web setup + +# Name of the big-bear-cloudflared-web application +name: big-bear-cloudflared-web + +# Service definitions for the big-bear-cloudflared-web application +services: + # Service name: big-bear-cloudflared-web + # The `big-bear-cloudflared-web` service defin...
_:hammer_and_wrench: Refactor suggestion_ **Enhance environment variable configuration** The environment variable definitions could be improved with: 1. Validation rules for ports and IP versions 2. Marking sensitive fields (like BASIC_AUTH_PASS) 3. Default values where appropriate Add validation and sensitivity mar...
big-bear-casaos
github_2023
others
2,241
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,92 @@ +# Configuration for cloudflared-web setup + +# Name of the big-bear-cloudflared-web application +name: big-bear-cloudflared-web + +# Service definitions for the big-bear-cloudflared-web application +services: + # Service name: big-bear-cloudflared-web + # The `big-bear-cloudflared-web` service defin...
_:warning: Potential issue_ **Security: Reconsider using host network mode** Using `network_mode: host` gives the container full access to the host's network stack, which violates the principle of least privilege. Consider using bridge networking with specific port mappings instead. ```diff - network_mode: host +...
big-bear-casaos
github_2023
others
2,213
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,86 @@ +# Docker Compose configuration for BigBearCasaOS Stirling PDF Service +# This service provides a web interface for a Local hosted web based PDF editor + +# Name of the big-bear-stirling-pdf application +name: big-bear-stirling-pdf + +# Service definitions for the big-bear-stirling-pdf application +ser...
_:bulb: Codebase verification_ _:warning: Potential issue_ **Security implications need to be documented** The codebase lacks proper documentation about security implications of the `DOCKER_ENABLE_SECURITY` setting. The only references to security are in the docker-compose.yml file, which merely states that it's "re...
big-bear-casaos
github_2023
others
2,185
bigbeartechworld
coderabbitai[bot]
@@ -30,30 +34,33 @@ services: # Specifies the admin password for the service - ADMIN_PASSWORD=casaos - # Mount necessary volumes for accessing system information + # Volume mappings required for system integration + # These mounts allow the container to interact with the host system volume...
_:warning: Potential issue_ **Security concern: Unconfined seccomp profile** Using `seccomp:unconfined` significantly reduces container security by allowing all system calls. This should be replaced with a custom seccomp profile that only allows necessary system calls. Consider: 1. Creating a custom seccomp profile...
big-bear-casaos
github_2023
others
2,185
bigbeartechworld
coderabbitai[bot]
@@ -20,6 +22,8 @@ services: # Run the container in privileged mode to allow access to system metrics privileged: true
_:warning: Potential issue_ **Security concern: Container runs in privileged mode** Running containers in privileged mode grants extensive host system access, which violates the principle of least privilege. Consider: 1. Identifying specific capabilities needed instead of using privileged mode 2. Using `cap_add` for ...
big-bear-casaos
github_2023
others
2,185
bigbeartechworld
coderabbitai[bot]
@@ -30,30 +34,33 @@ services: # Specifies the admin password for the service - ADMIN_PASSWORD=casaos - # Mount necessary volumes for accessing system information + # Volume mappings required for system integration + # These mounts allow the container to interact with the host system volume...
_:bulb: Codebase verification_ **Port 5000 conflicts detected with multiple CasaOS apps** There are direct port conflicts with several other CasaOS applications that also use port 5000 on the host: - LibreTranslate: `"5000:5000"` - Kavita: `"5000:5000"` - ChangeDetection: `"5000:5000"` - Ayon: `"5000:5000"` Consider...
big-bear-casaos
github_2023
others
2,185
bigbeartechworld
coderabbitai[bot]
@@ -30,30 +34,33 @@ services: # Specifies the admin password for the service - ADMIN_PASSWORD=casaos - # Mount necessary volumes for accessing system information + # Volume mappings required for system integration + # These mounts allow the container to interact with the host system volume...
_:hammer_and_wrench: Refactor suggestion_ **Enhance volume configuration for better security and data management** Current volume mappings could be improved for better security and data management: 1. Consider using named volumes for database persistence 2. Add explicit read-only flags where appropriate 3. Document b...
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
dragonfire1119
@@ -59,6 +59,7 @@ If you have a suggestion for an app, please post in the [BigBearCommunity](https | dockge | louislam/dockge | 1.4.2 | [YouTube Video](https://youtu.be/8Z6psh-t5iU) | | | docmost | docmost/docmost | 0.2.10 | | | | dozzle | amir20/dozzle | 8.2.1 | [YouTube Video](https://youtu.be/lLLNDcHNOuM) | |...
There is no need for this modification.
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
dragonfire1119
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + app:
Change this to `big-bear-ejbca-ce`
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + big-bear-ejbca-ce: + # Name of the container + containe...
_:hammer_and_wrench: Refactor suggestion_ **Consider security implications of exposing HTTP port.** Port 8080 (HTTP) is exposed alongside HTTPS. Since EJBCA handles sensitive PKI operations, consider: 1. Using only HTTPS (8443) for secure communication 2. If HTTP is required, restrict it to localhost or internal netw...
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
coderabbitai[bot]
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + big-bear-ejbca-ce: + # Name of the container + containe...
_:bulb: Codebase verification_ **Update the image reference to use SHA digest for immutability** The version 8.3.2 is currently the latest available version, but for better security and immutability, update the image reference to include the SHA digest: ```yaml image: keyfactor/ejbca-ce@sha256:2382758f0c56ae1bc97693...
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
dragonfire1119
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + big-bear-ejbca-ce: + # Name of the container + containe...
Change app to: big-bear-ejbca-ce
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
dragonfire1119
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + big-bear-ejbca-ce: + # Name of the container + containe...
This needs to be changed to: ```https://cdn.jsdelivr.net/gh/Keyfactor/ejbca-ce/.github/images/community-ejbca-icon.png``` because Github has a rate limit.
big-bear-casaos
github_2023
others
1,207
bigbeartechworld
dragonfire1119
@@ -0,0 +1,86 @@ +# Configuration for ejbca-ce setup + +# Name of the big-bear-ejbca-ce application +name: big-bear-ejbca-ce + +# Service definitions for the big-bear-ejbca-ce application +services: + # Service name: app + # The `app` service definition + big-bear-ejbca-ce: + # Name of the container + containe...
The x-casaos info to explain volumes, envs, and ports. Example: https://github.com/bigbeartechworld/big-bear-casaos/blob/83bd5bdc50dbdd72935436d430f9a9b95f1216a4/Apps/baserow/docker-compose.yml#L28