mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-24 00:01:00 +00:00
28 lines
683 B
YAML
28 lines
683 B
YAML
services:
|
|
privatebin:
|
|
image: "privatebin/nginx-fpm-alpine:2.0.6@sha256:13290e2f04bfd98cf8fc7e8d216fb76b2b2d12373d4923b859cd41c2d984fde8"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: unless-stopped
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8080"
|
|
environment:
|
|
- TZ=${TZ}
|
|
- PHP_TZ=${TZ}
|
|
read_only: true
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
tmpfs:
|
|
- /tmp:nodev,noexec,mode=1777
|
|
- /run:nodev,exec,mode=1777
|
|
- /var/lib/nginx/tmp:nodev,noexec,mode=1777
|
|
labels:
|
|
createdBy: "Apps"
|
|
volumes:
|
|
- "${APP_DATA_DIR}:/srv/data"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|