dpanel
v1.1
DPanel เป็นอินเทอร์เฟซเว็บที่ใช้ประโยชน์จาก FastAPI, Redis, Go PubSub และ Nginx เพื่อจัดการกระบวนการ Docker รวมถึงคอนเทนเนอร์ รูปภาพ และวอลุ่มด้วยสถิติแบบเรียลไทม์
คัดลอกและรันไฟล์เขียนต่อไปนี้:
version : " 3.9 "
services :
pubsub :
image : breyr/dpanel-pubsub-go
volumes :
- /var/run/docker.sock:/var/run/docker.sock
restart : on-failure
depends_on :
- redis
extra_hosts :
- " host.docker.internal:host-gateway "
fastapi :
image : breyr/dpanel-fastapi
ports :
- 5002:5002
volumes :
- /var/run/docker.sock:/var/run/docker.sock
- composefiles:/app/composefiles
restart : on-failure
depends_on :
- redis
extra_hosts :
- " host.docker.internal:host-gateway "
redis :
image : redis:latest
ports :
- 6379:6379
extra_hosts :
- " host.docker.internal:host-gateway "
volumes :
composefiles :