https://github.com/helloxz/webman
PHP框架webman的Docker镜像
https://github.com/helloxz/webman
Last synced: about 1 month ago
JSON representation
PHP框架webman的Docker镜像
- Host: GitHub
- URL: https://github.com/helloxz/webman
- Owner: helloxz
- License: mit
- Created: 2022-07-18T08:38:02.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T04:05:14.000Z (over 2 years ago)
- Last Synced: 2025-01-07T08:36:33.741Z (over 1 year ago)
- Language: Shell
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webman
PHP框架webman的Docker镜像
## Docker运行
```bash
docker run -d -p 8787:8787 -v /data/webman:/data/wwwroot/webman helloz/webman:latest
```
## docker-compose运行
```yaml
version: '3.3'
services:
webman:
network_mode: "host"
ports:
- '8787:8787'
volumes:
- './data:/data/wwwroot/webman'
image: 'helloz/webman:latest'
```