17 lines
502 B
YAML
17 lines
502 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
asotr:
|
|
build:
|
|
context: /home/danila/Danila/work/MVN/Soft/PID/python/
|
|
container_name: asotr_container
|
|
image: asotr:latest
|
|
working_dir: /app/bin
|
|
volumes:
|
|
- /home/danila/Danila/work/MVN/Soft/PID/python/data/asotr:/app/data/asotr
|
|
- /home/danila/Danila/work/MVN/Soft/PID/python/plots:/app/plots
|
|
- /home/danila/Danila/work/MVN/flight/data:/mnt/raw_mvn_data
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
command: ["sleep", "infinity"]
|