mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
26 lines
840 B
YAML
26 lines
840 B
YAML
# [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.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
libreoffice:
|
|
image: ghcr.io/linuxserver/libreoffice
|
|
container_name: libreoffice
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
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
|