Add an example of api server so that devs can quickly get up a bot running along with its api
13 lines
223 B
YAML
13 lines
223 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
backend:
|
|
container_name: embedchain_api
|
|
restart: unless-stopped
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
env_file:
|
|
- variables.env
|
|
ports:
|
|
- "5000:5000" |