-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
36 lines (36 loc) · 989 Bytes
/
docker-compose.yaml
File metadata and controls
36 lines (36 loc) · 989 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
include:
- ../aou-common/aou-common-compose.yaml
services:
app:
container_name: "application-server"
build:
context: ../nemo_jupyter
additional_contexts:
extension-builder: service:aou-common-extension-builder
load-envs: service:aou-common-load-envs
target: nemo-aou
user: jupyter
restart: always
volumes:
- .:/workspace:cached
ports:
- "8888:8888"
networks:
- app-network
cap_add:
- SYS_ADMIN
devices:
- /dev/fuse
security_opt:
- apparmor:unconfined
command: jupyter lab --ip=0.0.0.0 --port=8888 --no-browser --LabApp.token=''
wondershaper:
container_name: "wondershaper"
image: "us-west2-docker.pkg.dev/shared-pub-buckets-94mvrf/workbench-artifacts/app-wondershaper@sha256:9ab750f1210e395f3d1069934352afc04647c544b72f4013bcfe5694b9444bc3"
restart: always
network_mode: "host"
cap_add:
- NET_ADMIN
networks:
app-network:
external: true