diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 0f0db8c..0000000 --- a/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM nginx:alpine -COPY proxy/nginx-site.conf /etc/nginx/conf.d/default.conf -COPY . /usr/share/nginx/html -HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD wget -qO- http://localhost/ > /dev/null || exit 1 diff --git a/binaries/relibre_archlinux_x86_64 b/binaries/relibre_archlinux_x86_64 deleted file mode 100755 index 4920081..0000000 Binary files a/binaries/relibre_archlinux_x86_64 and /dev/null differ diff --git a/com.circlewithadot.Relibre.yml b/com.circlewithadot.Relibre.yml deleted file mode 100644 index 6fd369c..0000000 --- a/com.circlewithadot.Relibre.yml +++ /dev/null @@ -1,38 +0,0 @@ -app-id: com.circlewithadot.Relibre -runtime: org.gnome.Platform -runtime-version: '47' -sdk: org.gnome.Sdk - -sdk-extensions: - - org.freedesktop.Sdk.Extension.golang - -build-options: - append-path: /usr/lib/sdk/golang/bin - env: - GOPATH: /run/build/relibre/.gopath - -command: relibre -finish-args: - - --share=network - - --socket=wayland - - --socket=fallback-x11 - - --filesystem=xdg-download - -modules: - - name: relibre - buildsystem: simple - build-commands: - - go env -w CGO_ENABLED=1 - - | - set -e - files=$(grep -R -l 'webkit2gtk-4\.0' vendor || true) - if [ -n "$files" ]; then - sed -i 's/webkit2gtk-4\.0/webkit2gtk-4.1/g' $files - fi - - go build -mod=vendor -trimpath -ldflags "-s -w" -o /app/bin/relibre - - if [ -f dist/com.circlewithadot.Relibre.desktop ]; then install -Dm644 dist/com.circlewithadot.Relibre.desktop /app/share/applications/com.circlewithadot.Relibre.desktop; fi - - if [ -f dist/com.circlewithadot.Relibre.png ]; then install -Dm644 dist/com.circlewithadot.Relibre.png /app/share/icons/hicolor/512x512/apps/com.circlewithadot.Relibre.png; fi - sources: - - type: dir - path: . - diff --git a/docker-compose.yml.apache b/docker-compose.yml.apache deleted file mode 100644 index ee83052..0000000 --- a/docker-compose.yml.apache +++ /dev/null @@ -1,17 +0,0 @@ -services: - web: - build: - context: . - dockerfile: Dockerfile.web - expose: ["80"] - restart: unless-stopped - - proxy: - image: httpd:2.4-alpine - volumes: - - ./proxy/httpd.conf:/usr/local/apache2/conf/httpd.conf:ro - ports: - - "8080:80" - depends_on: - - web - restart: unless-stopped diff --git a/docker-compose.yml.caddy b/docker-compose.yml.caddy deleted file mode 100644 index 3f067f9..0000000 --- a/docker-compose.yml.caddy +++ /dev/null @@ -1,17 +0,0 @@ -services: - web: - build: - context: . - dockerfile: Dockerfile.web - expose: ["80"] - restart: unless-stopped - - proxy: - image: caddy:alpine - volumes: - - ./proxy/Caddyfile:/etc/caddy/Caddyfile:ro - ports: - - "8080:80" - depends_on: - - web - restart: unless-stopped diff --git a/docker-compose.yml.haproxy b/docker-compose.yml.haproxy deleted file mode 100644 index dc4f0c7..0000000 --- a/docker-compose.yml.haproxy +++ /dev/null @@ -1,17 +0,0 @@ -services: - web: - build: - context: . - dockerfile: Dockerfile.web - expose: ["80"] - restart: unless-stopped - - proxy: - image: haproxy:2.9 - volumes: - - ./proxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro - ports: - - "8080:80" - depends_on: - - web - restart: unless-stopped diff --git a/docker-compose.yml.nginx b/docker-compose.yml.nginx deleted file mode 100644 index 448e47a..0000000 --- a/docker-compose.yml.nginx +++ /dev/null @@ -1,17 +0,0 @@ -services: - web: - build: - context: . - dockerfile: Dockerfile.web - expose: ["80"] - restart: unless-stopped - - proxy: - image: nginx:alpine - volumes: - - ./proxy/nginx-proxy.conf:/etc/nginx/conf.d/default.conf:ro - ports: - - "8080:80" - depends_on: - - web - restart: unless-stopped