You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/docker-compose.yaml

15 lines
240 B

version: '3'
services:
web_demo:
build: .
command: python host_local_tools.py
volumes:
- .:/app
ports:
- "5000:5000"
host_local_tools:
build: .
command: python web_demo.py
volumes:
- .:/app