my-awesome-docker-compose/http-simple-server-python/docker-compose.yaml
cheliangzhao 1a5ed553be 🎨 Style: rename
2023-10-07 09:06:47 +08:00

13 lines
161 B
YAML

version: '3'
services:
app:
image: http-server
build: .
restart: unless-stopped
volumes:
- "./www:/www"
ports:
- "8000:8000"