14 lines
290 B
YAML
14 lines
290 B
YAML
version: "2.1"
|
|
services:
|
|
libreoffice:
|
|
image: lscr.io/linuxserver/libreoffice
|
|
container_name: libreoffice
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Warsaw
|
|
volumes:
|
|
- /docker/libreoffice:/config
|
|
ports:
|
|
- 3111:3000
|
|
restart: always |