Title logo
linuxserver/libreoffice.

539,085 50 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/libreoffice
Build Time 29 Apr 2024 23:04:31
Base Image lsiobase/rdesktop-web:alpine
Category Productivity
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 7.6.3 29 Apr 2024 at 23:04:30

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  libreoffice:
    image: linuxserver/libreoffice:7.6.3
    container_name: libreoffice
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use
      - PUID=1000 # User ID to run as
      - PGID=1000 # Group ID to run as
    volumes:
      - /host/path/to/config:/config # Contains all relevant configuration files.
    ports:
      - 3000:3000/tcp # LibreOffice desktop GUI

CLI

docker create \
  --name=libreoffice \
  -e TZ=Europe/London `# Specify a timezone to use` \
  -e PUID=1000 `# User ID to run as` \
  -e PGID=1000 `# Group ID to run as` \
  -v /host/path/to/config:/config `# Contains all relevant configuration files.` \
  -p 3000:3000/tcp `# LibreOffice desktop GUI` \
  --restart unless-stopped \
  linuxserver/libreoffice:7.6.3