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-test.yaml

13 lines
245 B

version: "3.8"
services:
app:
image: python:3.10.14-slim-bullseye
working_dir: /app
volumes:
- ./test-server:/app
ports:
- "8000:8000"
command: >
sh -c "pip install -r requirements.txt && python main.py"