mirror of
https://github.com/Balshgit/python-poetry.git
synced 2025-09-10 16:30:41 +03:00
14 lines
255 B
YAML
14 lines
255 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
python:
|
|
image: "poetry-python:latest"
|
|
container_name: 'poetry-python'
|
|
user: ${USER}
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- USER=${USER}
|
|
volumes:
|
|
- ./poetry/:/poetry/ |