appstore/apps/libreoffice/latest/docker-compose.yml
2023-11-09 19:15:01 +08:00

28 lines
593 B
YAML

version: '3'
services:
libreoffice:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:3000"
- "${PANEL_APP_PORT_HTTPS}:3001"
volumes:
- "${DATA_PATH}:/config"
environment:
- PUID=1000
- PGID=1000
- TZ=${TIME_ZONE}
- CUSTOM_USER=${HTTP_USER}
- PASSWORD=${HTTP_PWD}
#security_opt:
# - seccomp:unconfined #optional
image: linuxserver/libreoffice:latest
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true