Compare commits
23 commits
Author | SHA1 | Date | |
---|---|---|---|
ee9813e4b5 | |||
f3ac33ae5f | |||
37c52c6887 | |||
d02997b086 | |||
0c5862b32f | |||
7251cf6bf3 | |||
7fdf7d0f5c | |||
57630aff98 | |||
9fa30f7e52 | |||
e85ce36872 | |||
4b986b40b5 | |||
4f74598419 | |||
af2397d637 | |||
7d43abc913 | |||
813cbf46ff | |||
eb9f2f5c8b | |||
a19597d4ec | |||
ec5d88f295 | |||
35d70aa81f | |||
7a971a243f | |||
25e424964b | |||
162d18bfa1 | |||
43d1b32128 |
8 changed files with 237 additions and 68 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
use nix
|
|
@ -1,61 +0,0 @@
|
||||||
name: Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- 'v*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Extract Version Tag
|
|
||||||
id: extract-version
|
|
||||||
run: echo "docker_tag=$(grep -oP '(?<=FROM nextcloud:)[0-9]+\.[0-9]+\.[0-9]+' Dockerfile)" >> $GITHUB_OUTPUT
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Install Docker
|
|
||||||
run: |
|
|
||||||
apt-get update
|
|
||||||
apt-get install docker.io -y
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v1
|
|
||||||
with:
|
|
||||||
driver-opts: network=host
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
|
|
||||||
- name: Build image
|
|
||||||
uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
push: true
|
|
||||||
tags: jiriks74/nextcloud-extended:${{ steps.extract-version.outputs.docker_tag }},jiriks74/nextcloud-extended:latest
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
context: .
|
|
||||||
file: ./Dockerfile
|
|
||||||
|
|
||||||
# - name: Build image
|
|
||||||
# uses: docker/build-push-action@v2
|
|
||||||
# with:
|
|
||||||
# push: true
|
|
||||||
# tags:
|
|
||||||
# jiriks74/nextcloud-extended:latest
|
|
||||||
# platforms: linux/amd64,linux/arm64
|
|
||||||
# context: .
|
|
||||||
# file: ./Dockerfile
|
|
||||||
|
|
||||||
# - name: Tag latest
|
|
||||||
# run: |
|
|
||||||
# docker image ls
|
|
||||||
# docker tag nextcloud-extended:${{ steps.extract-version.outputs.docker_tag }} nextcloud-extended:latest
|
|
||||||
# docker push nextcloud-extended:latest
|
|
60
.gitea/workflows/build_latest.yml
Normal file
60
.gitea/workflows/build_latest.yml
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * 1"
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'manual_build'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-latest:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Extract Version Tag
|
||||||
|
id: extract-version
|
||||||
|
run: |
|
||||||
|
export DIGEST=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=100" | jq -r '.results[] | select(.name=="latest") .digest')
|
||||||
|
export VERSION=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=1000" | jq -r ".results[] | select(.name | test(\"^([0-9]+\\\.)+([0-9]+\\\.)+[0-9]+$\")) | select(.digest==\"$DIGEST\").name")
|
||||||
|
echo "Latest version: $VERSION"
|
||||||
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
||||||
|
shell: bash
|
||||||
|
# - name: Check if the image was already built
|
||||||
|
# id: check-build-status
|
||||||
|
# run: |
|
||||||
|
# if curl --silent -f -lSL "https://hub.docker.com/v2/repositories/jiriks74/nextcloud-extended/tags/$(echo ${{steps.extract-version.outputs.version}})" 2> /dev/null; then echo "Built already!" && exit 1; else echo "This version isn't built yet."; fi
|
||||||
|
|
||||||
|
- name: Update repositories
|
||||||
|
run: sudo apt update
|
||||||
|
- name: Install Docker
|
||||||
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||||
|
with:
|
||||||
|
packages: docker.io
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
# driver-opts: network=host
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
file: ./Dockerfile
|
||||||
|
context: .
|
||||||
|
build-args: NEXTCLOUD_VERSION=${{ steps.extract-version.outputs.version }}
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
tags: jiriks74/nextcloud-extended:${{ steps.extract-version.outputs.version }},jiriks74/nextcloud-extended:latest
|
||||||
|
|
63
.gitea/workflows/build_stable.yml
Normal file
63
.gitea/workflows/build_stable.yml
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
name: Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * 1"
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'manual_build'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-stable:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Extract Version Tag
|
||||||
|
id: extract-version
|
||||||
|
run: |
|
||||||
|
export DIGEST=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=100" | jq -r '.results[] | select(.name=="stable") .digest')
|
||||||
|
export VERSION=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=1000" | jq -r '.results[] | select(.name | test("^[0-9]+\\.[0-9]+\\.[0-9]+$")) | select(.digest=="'$DIGEST'").name')
|
||||||
|
export VERSION_MAJOR=$(curl -s "https://registry.hub.docker.com/v2/repositories/library/nextcloud/tags/?page_size=1000" | jq -r ".results[] | select(.name | test(\"^[0-9]{1,2}$\")) | select(.digest==\"$DIGEST\").name")
|
||||||
|
echo "Latest version: $VERSION"
|
||||||
|
echo "Major version: $VERSION_MAJOR"
|
||||||
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
||||||
|
echo "version_major=${VERSION_MAJOR}" >> $GITHUB_OUTPUT
|
||||||
|
shell: bash
|
||||||
|
# - name: Check if the image was already built
|
||||||
|
# id: check-build-status
|
||||||
|
# run: |
|
||||||
|
# if curl --silent -f -lSL "https://hub.docker.com/v2/repositories/jiriks74/nextcloud-extended/tags/$(echo ${{steps.extract-version.outputs.version}})" 2> /dev/null; then echo "Built already!" && exit 1; else echo "This version isn't built yet."; fi
|
||||||
|
|
||||||
|
- name: Update repositories
|
||||||
|
run: sudo apt update
|
||||||
|
- name: Install Docker
|
||||||
|
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||||
|
with:
|
||||||
|
packages: docker.io
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
# driver-opts: network=host
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
file: ./Dockerfile
|
||||||
|
context: .
|
||||||
|
build-args: NEXTCLOUD_VERSION=${{ steps.extract-version.outputs.version }}
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
tags: jiriks74/nextcloud-extended:${{ steps.extract-version.outputs.version }},jiriks74/nextcloud-extended:${{ steps.extract-version.outputs.version_major }},jiriks74/nextcloud-extended:stable
|
||||||
|
|
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Direnv
|
||||||
|
.direnv
|
||||||
|
|
||||||
|
# ACT runner
|
||||||
|
.env
|
|
@ -1,5 +1,6 @@
|
||||||
FROM nextcloud:27.1.1
|
ARG NEXTCLOUD_VERSION
|
||||||
|
FROM nextcloud:${NEXTCLOUD_VERSION}
|
||||||
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
|
LABEL maintainer="Jiří Štefka <jiri@stefka.eu>"
|
||||||
|
|
||||||
RUN apt update && apt upgrade -y --no-install-recommends && apt install ffmpeg aria2 youtube-dl libmagickcore-dev -y --no-install-recommends
|
RUN apt update && apt upgrade -y --no-install-recommends && apt install gnupg2 ffmpeg aria2 libmagickcore-dev -y --no-install-recommends
|
||||||
RUN apt clean && rm -rf /var/lib/apt/lists/*
|
RUN apt clean && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
99
README.md
99
README.md
|
@ -1,22 +1,109 @@
|
||||||
# docker-nextcloud-extended
|
# docker-nextcloud-extended
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
||||||
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
||||||
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
[](https://hub.docker.com/r/jiriks74/nextcloud-extended)
|
||||||
|
|
||||||
|
|
||||||
Nextcloud's docker image with extra utilities
|
Nextcloud's docker image with extra utilities
|
||||||
|
|
||||||
## Image availabe on [DockerHub](https://hub.docker.com/repository/docker/jiriks74/nextcloud-extended/general)
|
> [!Note]
|
||||||
|
> The images with tags `latest` and `stable` are being rebuilt every week even if
|
||||||
|
> there isn't a Nextcloud update to get security updates form `apt`.
|
||||||
|
|
||||||
|
> [!Important]
|
||||||
|
> I do not recommend automatically pulling the `latest` and `stable` tags as they track
|
||||||
|
> upstream image and they can update you to the next major version without you intending to do so.
|
||||||
|
>
|
||||||
|
> If you'd like to receive the weekly updates tag your images with the major version like
|
||||||
|
> `jiriks74/nextcloud-extended:28`. Keep in mind that these version tags are not automatically
|
||||||
|
> updated when new major version is out for the `stable` tag upstream.
|
||||||
|
|
||||||
|
## This image is availabe on [DockerHub](https://hub.docker.com/repository/docker/jiriks74/nextcloud-extended/general)
|
||||||
|
|
||||||
## Utilities added
|
## Utilities added
|
||||||
|
|
||||||
|
- `gnupg2` - Used by [Snappymail](https://github.com/the-djmaze/snappymail) to encrypt and sign emails
|
||||||
- `ffmpeg` - Used by [Video converter](https://github.com/PaulLereverend/NextcloudVideo_Converter) app
|
- `ffmpeg` - Used by [Video converter](https://github.com/PaulLereverend/NextcloudVideo_Converter) app
|
||||||
- `aria2` and `youtube-dl` - Used by [NCDownloader](https://github.com/shiningw/ncdownloader) app
|
- `aria2` and `youtube-dl` - Used by [NCDownloader](https://github.com/shiningw/ncdownloader) app
|
||||||
- `libmagickcore-dev` - To fix `Module php-imagick in this instance has no SVG support` error
|
- `libmagickcore-dev` - To fix `Module php-imagick in this instance has no SVG support` error
|
||||||
|
|
||||||
## Tips
|
## Setup
|
||||||
|
|
||||||
|
I recommend using `docker compose` to set up Nextcloud as it's easier to manage than palin Docker.
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Basic <code>docker-compose.yml</code></summary>
|
||||||
|
|
||||||
|
> [!Important]
|
||||||
|
>
|
||||||
|
> Don't forget to change the passwords (similar to `<password>`) and if you'd like to change the database name and user too.
|
||||||
|
|
||||||
|
```yml
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mariadb
|
||||||
|
restart: always
|
||||||
|
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||||
|
volumes:
|
||||||
|
- ./db:/var/lib/mysql
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=<db_root_password>
|
||||||
|
- MYSQL_PASSWORD=<db_password>
|
||||||
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
|
healthcheck:
|
||||||
|
test: mariadb-admin ping -h 127.0.0.1 -u $$MYSQL_USER --password=$$MYSQL_PASSWORD
|
||||||
|
start_period: 5s
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 55
|
||||||
|
|
||||||
|
app:
|
||||||
|
image: jiriks74/nextcloud-extended:stable
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
links:
|
||||||
|
- db
|
||||||
|
- redis
|
||||||
|
depends_on:
|
||||||
|
redis:
|
||||||
|
condition: service_healthy
|
||||||
|
db:
|
||||||
|
condition: service_healthy
|
||||||
|
volumes:
|
||||||
|
- ./nextcloud:/var/www/html
|
||||||
|
- ./data:/var/www/html/data
|
||||||
|
environment:
|
||||||
|
- MYSQL_PASSWORD=<db_password>
|
||||||
|
- MYSQL_DATABASE=nextcloud
|
||||||
|
- MYSQL_USER=nextcloud
|
||||||
|
- MYSQL_HOST=db
|
||||||
|
- REDIS_HOST=redis
|
||||||
|
- REDIS_HOST_PASSWORD=<redis_password>
|
||||||
|
healthcheck:
|
||||||
|
test: curl -sSf 'http://localhost/status.php' | grep '"installed":true' | grep '"maintenance":false' | grep '"needsDbUpgrade":false' || exit 1
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 10
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
restart: always
|
||||||
|
command: redis-server --requirepass <redis_password>
|
||||||
|
volumes:
|
||||||
|
- ./redis:/data
|
||||||
|
healthcheck:
|
||||||
|
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## Tips
|
||||||
### Cron job
|
### Cron job
|
||||||
|
|
||||||
If you're getting error simmilar to `Last job execution ran a day ago. Something seems wrong.`
|
If you're getting error simmilar to `Last job execution ran a day ago. Something seems wrong.`
|
||||||
|
@ -26,5 +113,7 @@ try to add this to your cron tab (`sudo crontab -e`):
|
||||||
0,5,10,15,20,25,30,35,40,45,50,55 * * * * docker exec -u www-data <container_name> php -f /var/www/html/cron.php
|
0,5,10,15,20,25,30,35,40,45,50,55 * * * * docker exec -u www-data <container_name> php -f /var/www/html/cron.php
|
||||||
```
|
```
|
||||||
|
|
||||||
- *Of course don't forget to change the `<container_name>` to your nextcloud's container name
|
> [!Important]
|
||||||
(eg. `docker-nextcloud_app`)*
|
>
|
||||||
|
> *Don't forget to change the `<container_name>` to your Nextcloud's container name
|
||||||
|
> (eg. `docker-nextcloud_app`)*
|
||||||
|
|
11
default.nix
Normal file
11
default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs ? (import <nixpkgs> {
|
||||||
|
config.allowUnfree = true;
|
||||||
|
}),
|
||||||
|
}:
|
||||||
|
pkgs.mkShell {
|
||||||
|
pure = true;
|
||||||
|
packages = with pkgs; [
|
||||||
|
# Choose the build tools that you need
|
||||||
|
act
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue