-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (36 loc) · 847 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (36 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
services:
pyproj:
build:
context: .
dockerfile: Dockerfile
args:
- DEPENDENCY_INSTALL_OPTION=--all-groups
- INSTALL_UV=true
- INSTALL_TASK=true
stdin_open: true
tty: true
user: root
command: /bin/bash
# ports:
# - 8000:8000
volumes:
- ./src:/app/src
- type: bind
source: ./pyproject.toml
target: /app/pyproject.toml
- type: bind
source: ./Taskfile.yml
target: /app/Taskfile.yml
- type: bind
source: ./ruff.toml
target: /app/ruff.toml
- type: bind
source: ./ty.toml
target: /app/ty.toml
- type: bind
source: ./pyrefly.toml
target: /app/pyrefly.toml
environment:
- ENVIRONMENT=local
- SHELL=/bin/bash
container_name: pyproj-template