Files
appstore/apps/olivetin/latest/docker-compose.yml
T
2026-08-01 02:59:19 +08:00

29 lines
619 B
YAML

services:
olivetin:
image: "jamesread/olivetin:latest"
container_name: ${CONTAINER_NAME}
restart: always
read_only: true
tmpfs:
- /tmp:size=128M
security_opt:
- no-new-privileges:true
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:1337"
volumes:
- "${APP_CONFIG_DIR}:/config"
healthcheck:
test: ["CMD", "curl", "--fail", "--silent", "http://127.0.0.1:1337/readyz"]
interval: 10s
timeout: 5s
retries: 9
start_period: 10s
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true