From 5c39838fe9f0e50205bae5b08cc0b3a48bec774d Mon Sep 17 00:00:00 2001 From: okxlin Date: Tue, 29 Aug 2023 02:12:54 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0libreoffice=E5=88=B0?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/libreoffice/7.5.5/.env.sample | 7 + apps/libreoffice/7.5.5/data.yml | 48 ++++ apps/libreoffice/7.5.5/docker-compose.yml | 27 +++ apps/libreoffice/README.md | 242 +++++++++++++++++++++ apps/libreoffice/data.yml | 20 ++ apps/libreoffice/latest/.env.sample | 7 + apps/libreoffice/latest/data.yml | 48 ++++ apps/libreoffice/latest/docker-compose.yml | 27 +++ apps/libreoffice/logo.png | Bin 0 -> 5794 bytes 9 files changed, 426 insertions(+) create mode 100644 apps/libreoffice/7.5.5/.env.sample create mode 100644 apps/libreoffice/7.5.5/data.yml create mode 100644 apps/libreoffice/7.5.5/docker-compose.yml create mode 100644 apps/libreoffice/README.md create mode 100644 apps/libreoffice/data.yml create mode 100644 apps/libreoffice/latest/.env.sample create mode 100644 apps/libreoffice/latest/data.yml create mode 100644 apps/libreoffice/latest/docker-compose.yml create mode 100644 apps/libreoffice/logo.png diff --git a/apps/libreoffice/7.5.5/.env.sample b/apps/libreoffice/7.5.5/.env.sample new file mode 100644 index 00000000..2d55fec3 --- /dev/null +++ b/apps/libreoffice/7.5.5/.env.sample @@ -0,0 +1,7 @@ +CONTAINER_NAME="libreoffice" +PANEL_APP_PORT_HTTP="40136" +PANEL_APP_PORT_HTTPS="40137" +DATA_PATH="./data" +TIME_ZONE="Asia/Shanghai" +HTTP_USER="user" +HTTP_PWD="password" diff --git a/apps/libreoffice/7.5.5/data.yml b/apps/libreoffice/7.5.5/data.yml new file mode 100644 index 00000000..b0dc7c1b --- /dev/null +++ b/apps/libreoffice/7.5.5/data.yml @@ -0,0 +1,48 @@ +additionalProperties: + formFields: + - default: 40136 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: HTTP Port + labelZh: HTTP端口 + required: true + rule: paramPort + type: number + - default: 40137 + edit: true + envKey: PANEL_APP_PORT_HTTPS + labelEn: HTTPS Port + labelZh: HTTPS端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + - default: Asia/Shanghai + edit: true + envKey: TIME_ZONE + labelEn: Time zone + labelZh: 时区 + required: true + type: text + - default: user + edit: true + envKey: HTTP_USER + labelEn: http auth user + labelZh: HTTP 用户 + required: true + type: text + - default: password + edit: true + envKey: HTTP_PWD + labelEn: http auth password + labelZh: HTTP 密码 + random: true + required: true + rule: paramComplexity + type: password diff --git a/apps/libreoffice/7.5.5/docker-compose.yml b/apps/libreoffice/7.5.5/docker-compose.yml new file mode 100644 index 00000000..77f71058 --- /dev/null +++ b/apps/libreoffice/7.5.5/docker-compose.yml @@ -0,0 +1,27 @@ +version: '3' +services: + libreoffice: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:3000" + - "${PANEL_APP_PORT_HTTPS}:3001" + volumes: + - "${DATA_PATH}:/config" + environment: + - PUID=1000 + - PGID=1000 + - TZ=${TIME_ZONE} + - CUSTOM_USER=${HTTP_USER} + - PASSWORD=${HTTP_PWD} + #security_opt: + # - seccomp:unconfined #optional + image: linuxserver/libreoffice:7.5.5 + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/libreoffice/README.md b/apps/libreoffice/README.md new file mode 100644 index 00000000..1fc15878 --- /dev/null +++ b/apps/libreoffice/README.md @@ -0,0 +1,242 @@ +The [LinuxServer.io](https://linuxserver.io/) team brings you another container release featuring: + +- regular and timely application updates +- easy user mappings (PGID, PUID) +- custom base image with s6 overlay +- weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth +- regular security updates + +Find us at: + +- [Blog](https://blog.linuxserver.io/) \- all the things you can do with our containers including How-To guides, opinions and much more! +- [Discord](https://discord.gg/YWrKVTn) \- realtime support / chat with the community and the team. +- [Discourse](https://discourse.linuxserver.io/) \- post on our community forum. +- [Fleet](https://fleet.linuxserver.io/) \- an online web interface which displays all of our maintained images. +- [GitHub](https://github.com/linuxserver) \- view the source for all of our repositories. +- [Open Collective](https://opencollective.com/linuxserver) \- please consider helping us by either donating or contributing to our budget + +[LibreOffice](https://www.libreoffice.org/) is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity. + +[![libreoffice](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/libreoffice-logo.png)](https://www.libreoffice.org/) + +## Supported Architectures + +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). + +Simply pulling `lscr.io/linuxserver/libreoffice:latest` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. + +The architectures supported by this image are: + +| Architecture | Available | Tag | +| --- | --- | --- | +| x86-64 | ✅ | amd64-<version tag> | +| arm64 | ✅ | arm64v8-<version tag> | +| armhf | ❌ | | + +## Application Setup + +The application can be accessed at: + +- http://yourhost:3000/ +- https://yourhost:3001/ + +### Options in all KasmVNC based GUI containers + +This container is based on [Docker Baseimage KasmVNC](https://github.com/linuxserver/docker-baseimage-kasmvnc) which means there are additional environment variables and run configurations to enable or disable specific functionality. + +#### Optional environment variables + +| Variable | Description | +| --- | --- | +| CUSTOM_PORT | Internal port the container listens on for http if it needs to be swapped from the default 3000. | +| CUSTOM\_HTTPS\_PORT | Internal port the container listens on for https if it needs to be swapped from the default 3001. | +| CUSTOM_USER | HTTP Basic auth username, abc is default. | +| PASSWORD | HTTP Basic auth password, abc is default. If unset there will be no auth | +| SUBFOLDER | Subfolder for the application if running a subfolder reverse proxy, need both slashes IE `/subfolder/` | +| TITLE | The page title displayed on the web browser, default "KasmVNC Client". | +| FM_HOME | This is the home directory (landing) for the file manager, default "/config". | +| START_DOCKER | If set to false a container with privilege will not automatically start the DinD Docker setup. | +| DRINODE | If mounting in /dev/dri for [DRI3 GPU Acceleration](https://www.kasmweb.com/kasmvnc/docs/master/gpu_acceleration.html) allows you to specify the device to use IE `/dev/dri/renderD128` | + +#### Optional run configurations + +| Variable | Description | +| --- | --- | +| `--privileged` | Will start a Docker in Docker (DinD) setup inside the container to use docker in an isolated environment. For increased performance mount the Docker directory inside the container to the host IE `-v /home/user/docker-data:/var/lib/docker`. | +| `-v /var/run/docker.sock:/var/run/docker.sock` | Mount in the host level Docker socket to either interact with it via CLI or use Docker enabled applications. | +| `--device /dev/dri:/dev/dri` | Mount a GPU into the container, this can be used in conjunction with the `DRINODE` environment variable to leverage a host video card for GPU accelerated appplications. Only **Open Source** drivers are supported IE (Intel,AMDGPU,Radeon,ATI,Nouveau) | + +### Lossless mode + +This container is capable of delivering a true lossless image at a high framerate to your web browser by changing the Stream Quality preset to "Lossless", more information [here](https://www.kasmweb.com/docs/latest/how_to/lossless.html#technical-background). In order to use this mode from a non localhost endpoint the HTTPS port on 3001 needs to be used. If using a reverse proxy to port 3000 specific headers will need to be set as outlined [here](https://github.com/linuxserver/docker-baseimage-kasmvnc#lossless). + +## Usage + +Here are some example snippets to help you get started creating a container. + +### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) + +``` +--- +version: "2.1" +services: + libreoffice: + image: lscr.io/linuxserver/libreoffice:latest + container_name: libreoffice + security_opt: + - seccomp:unconfined #optional + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + volumes: + - /path/to/config:/config + ports: + - 3000:3000 + - 3001:3001 + restart: unless-stopped +``` + +### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/)) + +``` +docker run -d \ + --name=libreoffice \ + --security-opt seccomp=unconfined `#optional` \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Etc/UTC \ + -p 3000:3000 \ + -p 3001:3001 \ + -v /path/to/config:/config \ + --restart unless-stopped \ + lscr.io/linuxserver/libreoffice:latest +``` + +## Parameters + +Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. + +| Parameter | Function | +| --- | --- | +| `-p 3000` | LibreOffice desktop gui. | +| `-p 3001` | LibreOffice desktop gui HTTPS. | +| `-e PUID=1000` | for UserID - see below for explanation | +| `-e PGID=1000` | for GroupID - see below for explanation | +| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | +| `-v /config` | Users home directory in the container, stores program settings and documents | +| `--security-opt seccomp=unconfined` | For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. | + +## Environment variables from files (Docker secrets) + +You can set any environment variable from a file by using a special prepend `FILE__`. + +As an example: + +``` +-e FILE__PASSWORD=/run/secrets/mysecretpassword +``` + +Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. + +## Umask for running applications + +For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting. Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support. + +## User / Group Identifiers + +When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. + +Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. + +In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below: + +``` + $ id username + uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) +``` + +## Docker Mods + +We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. + +## Support Info + +- Shell access whilst the container is running: `docker exec -it libreoffice /bin/bash` +- To monitor the logs of the container in realtime: `docker logs -f libreoffice` +- container version number + - `docker inspect -f '{{ index .Config.Labels "build_version" }}' libreoffice` +- image version number + - `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/libreoffice:latest` + +## Updating Info + +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. + +Below are the instructions for updating containers: + +### Via Docker Compose + +- Update all images: `docker-compose pull` + - or update a single image: `docker-compose pull libreoffice` +- Let compose update all containers as necessary: `docker-compose up -d` + - or update a single container: `docker-compose up -d libreoffice` +- You can also remove the old dangling images: `docker image prune` + +### Via Docker Run + +- Update the image: `docker pull lscr.io/linuxserver/libreoffice:latest` +- Stop the running container: `docker stop libreoffice` +- Delete the container: `docker rm libreoffice` +- Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) +- You can also remove the old dangling images: `docker image prune` + +### Via Watchtower auto-updater (only use if you don't remember the original parameters) + +- Pull the latest image at its tag and replace it with the same env variables in one run: + + ``` + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once libreoffice + ``` + +- You can also remove the old dangling images: `docker image prune` + + +**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). + +### Image Update Notifications - Diun (Docker Image Update Notifier) + +- We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. + +## Building locally + +If you want to make local modifications to these images for development purposes or just to customize the logic: + +``` +git clone https://github.com/linuxserver/docker-libreoffice.git +cd docker-libreoffice +docker build \ + --no-cache \ + --pull \ + -t lscr.io/linuxserver/libreoffice:latest . +``` + +The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` + +``` +docker run --rm --privileged multiarch/qemu-user-static:register --reset +``` + +Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. + +## Versions + +- **13.05.23:** \- Rebase to Alpine 3.18. +- **18.03.23:** \- Rebase to KasmVNC base image. +- **21.10.22:** \- Rebase to Alpine 3.16, migrate to s6v3. +- **23.12.21:** \- Rebase to Alpine 3.15. +- **26.09.21:** \- Rebase to Alpine 3.14. +- **05.04.21:** \- Initial release. \ No newline at end of file diff --git a/apps/libreoffice/data.yml b/apps/libreoffice/data.yml new file mode 100644 index 00000000..8994be05 --- /dev/null +++ b/apps/libreoffice/data.yml @@ -0,0 +1,20 @@ +name: LibreOffice +tags: + - 工具 +title: 一款功能强大的办公软件 +type: 工具 +description: 一款功能强大的办公软件 +additionalProperties: + key: libreoffice + name: LibreOffice + tags: + - Tool + shortDescZh: 一款功能强大的办公软件 + shortDescEn: A free and powerful office suite + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://www.libreoffice.org + github: https://hub.docker.com/r/linuxserver/libreoffice + document: https://www.libreoffice.org diff --git a/apps/libreoffice/latest/.env.sample b/apps/libreoffice/latest/.env.sample new file mode 100644 index 00000000..2d55fec3 --- /dev/null +++ b/apps/libreoffice/latest/.env.sample @@ -0,0 +1,7 @@ +CONTAINER_NAME="libreoffice" +PANEL_APP_PORT_HTTP="40136" +PANEL_APP_PORT_HTTPS="40137" +DATA_PATH="./data" +TIME_ZONE="Asia/Shanghai" +HTTP_USER="user" +HTTP_PWD="password" diff --git a/apps/libreoffice/latest/data.yml b/apps/libreoffice/latest/data.yml new file mode 100644 index 00000000..b0dc7c1b --- /dev/null +++ b/apps/libreoffice/latest/data.yml @@ -0,0 +1,48 @@ +additionalProperties: + formFields: + - default: 40136 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: HTTP Port + labelZh: HTTP端口 + required: true + rule: paramPort + type: number + - default: 40137 + edit: true + envKey: PANEL_APP_PORT_HTTPS + labelEn: HTTPS Port + labelZh: HTTPS端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + - default: Asia/Shanghai + edit: true + envKey: TIME_ZONE + labelEn: Time zone + labelZh: 时区 + required: true + type: text + - default: user + edit: true + envKey: HTTP_USER + labelEn: http auth user + labelZh: HTTP 用户 + required: true + type: text + - default: password + edit: true + envKey: HTTP_PWD + labelEn: http auth password + labelZh: HTTP 密码 + random: true + required: true + rule: paramComplexity + type: password diff --git a/apps/libreoffice/latest/docker-compose.yml b/apps/libreoffice/latest/docker-compose.yml new file mode 100644 index 00000000..1bced0d9 --- /dev/null +++ b/apps/libreoffice/latest/docker-compose.yml @@ -0,0 +1,27 @@ +version: '3' +services: + libreoffice: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:3000" + - "${PANEL_APP_PORT_HTTPS}:3001" + volumes: + - "${DATA_PATH}:/config" + environment: + - PUID=1000 + - PGID=1000 + - TZ=${TIME_ZONE} + - CUSTOM_USER=${HTTP_USER} + - PASSWORD=${HTTP_PWD} + #security_opt: + # - seccomp:unconfined #optional + image: linuxserver/libreoffice:latest + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/libreoffice/logo.png b/apps/libreoffice/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..5789a1643f4fec42715396d3157ca6a800c46fed GIT binary patch literal 5794 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