mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2026-03-13 10:32:25 +08:00
12 lines
288 B
YAML
12 lines
288 B
YAML
version: "3"
|
|
services:
|
|
app:
|
|
build: .
|
|
restart: always
|
|
environment:
|
|
DATABASE_URL: mysql://root:123456@127.0.0.1:3306/fastapi-admin
|
|
TZ: Asia/Shanghai
|
|
network_mode: host
|
|
image: fastapi-admin
|
|
command: uvicorn examples.main:app_ --port 8000 --host 0.0.0.0
|