site/docker-compose.yml
2024-04-05 02:03:11 +02:00

8 lines
256 B
YAML

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:
- "3000:8080" # Map external port 3000 to internal port 8080