15 lines
216 B
YAML
15 lines
216 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
python:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/python/Dockerfile
|
|
volumes:
|
|
- ..:/app
|
|
environment:
|
|
- PYTHONPATH=/app
|
|
command: /bin/bash
|
|
tty: true
|
|
|