mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-03-22 10:01:14 +08:00
25 lines
483 B
YAML
25 lines
483 B
YAML
version: '3'
|
|
services:
|
|
hexo:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:4000"
|
|
volumes:
|
|
- "./data:/app"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Asia/Shanghai
|
|
- GIT_USER=${GIT_USERNAME}
|
|
- GIT_EMAIL=${GIT_MAIL}
|
|
image: bloodstar/hexo:stable-23-07-01
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|