site/docker-compose.yml

10 lines
308 B
YAML
Raw Normal View History

2024-04-05 00:03:11 +00:00
version: '3' # Specify a Docker Compose file version
services:
site: # Name of your service
build: . # Path to your Dockerfile (assumes it's in the same directory)
ports:
2024-04-05 00:06:40 +00:00
- "3004:8080" # Map external port 3000 to internal port 8080
volumes:
- ./content:/usr/src/app/content