-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
42 lines (39 loc) · 850 Bytes
/
compose.yml
File metadata and controls
42 lines (39 loc) · 850 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
37
38
39
40
41
42
x-default: &default
working_dir: /workspace
tty: true
restart: always
x-mount_local: &mount_local
user: foo
env_file:
- .env
entrypoint: bash
volumes:
- $PJ_DIR:/workspace
services:
sandbox:
image: asia.gcr.io/linalgo/${PKG_NAME}
<<: [ *default ]
build:
context: $PJ_DIR
dockerfile: docker/sandbox/Dockerfile
args:
- PY_VER=310
- EXTRA=all
dev:
image: asia.gcr.io/linalgo/${PKG_NAME}:dev
container_name: wsd-dev
<<: [ *default ]
build:
context: $PJ_DIR
dockerfile: docker/sandbox/Dockerfile
args:
- PY_VER=310
- EXTRA=dev
vanilla:
image: asia.gcr.io/linalgo/${PKG_NAME}:vanilla-py310
build:
context: $PJ_DIR
dockerfile: docker/vanilla/Dockerfile
args:
- PY_TAG=3.10-slim
target: dev