Spaces:
Sleeping
Sleeping
File size: 260 Bytes
f9b08e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
version: '3.8'
services:
logreg-api:
build:
context: .
dockerfile: Dockerfile
container_name: logreg-fastapi-container
ports:
- "7860:7860"
volumes:
- ./app:/app
environment:
- PORT=7860
restart: always
|