mirror of
https://github.com/Routstr/routstr-core.git
synced 2026-08-09 11:04:36 +00:00
13 lines
224 B
YAML
13 lines
224 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
routstr-proxy:
|
|
build: .
|
|
command: ["fastapi", "dev", "main.py", "--host", "0.0.0.0", "--port", "8000"]
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
env_file:
|
|
- .env
|