Merge pull request #430 from juliusknorr/copilot/fix-docker-compose-pull-issue

This commit is contained in:
Julius Knorr
2025-11-06 20:21:37 +01:00
committed by GitHub
4 changed files with 18 additions and 1 deletions
+1
View File
@@ -41,6 +41,7 @@ jobs:
- codedev
- code
- talk-janus
- noop
permissions:
packages: write
contents: read
+1 -1
View File
@@ -661,7 +661,7 @@ services:
- host.docker.internal:host-gateway
database-sqlite:
image: rwgrim/docker-noop
image: ghcr.io/juliusknorr/nextcloud-dev-noop:latest
database-mysql:
image: mariadb:10.6
+11
View File
@@ -0,0 +1,11 @@
# VERSION 0.1.0
# Based on https://github.com/JanNash/docker_noop
FROM alpine:latest AS builder
COPY noop/noop.c /
RUN apk add --no-cache gcc musl-dev && gcc -static -o /noop /noop.c
FROM scratch
COPY --from=builder /noop /noop
CMD ["/noop"]
+5
View File
@@ -0,0 +1,5 @@
#include <stdlib.h>
int main() {
exit(0);
}