DEV Community

Jinna Balu
Jinna Balu

Posted on

Deploy libreoffice as container

jinnabalu

Configuration saved in github repo infinite-docker-compose

Create the docker-compose.yml for the obsidian

services:
  libreoffice:
    image: lscr.io/linuxserver/libreoffice:latest
    container_name: libreoffice
    security_opt:
      - seccomp=unconfined
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    ports:
      - "3000:3000"
      - "3001:3001"
    restart: unless-stopped
Enter fullscreen mode Exit fullscreen mode

Run the application docker-compose up -d

Application is available on http://localhost:3000/

Top comments (0)