Spaces:
Runtime error
Runtime error
File size: 476 Bytes
7baafc3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
version: '3.8'
services:
smart-search:
build:
context: .
dockerfile: docker/DockerFile # Adjust if the Dockerfile is named differently or located elsewhere
container_name: smart-search
volumes:
- .:/app # Replace 'your-code-dir' with your actual code directory
ports:
- "8000:8000" # Port mapping corrected to match your application's port
env_file:
- docker/.env # Replace with the path to your actual environment file
|