15 lines
245 B
YAML
15 lines
245 B
YAML
version: '3.7'
|
|
services:
|
|
backend:
|
|
container_name: audio_resive
|
|
build: .
|
|
restart: always
|
|
volumes:
|
|
- ".:/audio_resive"
|
|
working_dir: /audio_resive
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
python main.py
|