You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
829 B
YAML

3 years ago
# [LibreOffice]({{ project_url }}) 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.
---
version: "2.1"
services:
libreoffice:
image: ghcr.io/linuxserver/libreoffice
container_name: libreoffice
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
3 years ago
- TZ=${TZ:-Europe/Amsterdam}
3 years ago
volumes:
# Users home directory in the container, stores program settings and documents
- ${BASEDIR:-/volume1/docker}/libreoffice/config:/config
ports:
# LibreOffice desktop gui.
- 3000:3000
restart: unless-stopped