mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-04 20:47:58 +08:00
24 lines
487 B
YAML
24 lines
487 B
YAML
|
version: "3.3"
|
||
|
services:
|
||
|
homepage:
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
image: ghcr.io/gethomepage/homepage:latest
|
||
|
restart: always
|
||
|
networks:
|
||
|
- 1panel-network
|
||
|
ports:
|
||
|
- "${PANEL_APP_PORT_HTTP}:3000"
|
||
|
volumes:
|
||
|
- ./config:/app/config
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
- TZ=${TIME_ZONE}
|
||
|
labels:
|
||
|
createdBy: "Apps"
|
||
|
|
||
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|