-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
39 lines (39 loc) · 948 Bytes
/
docker-compose.yaml
File metadata and controls
39 lines (39 loc) · 948 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
include:
- ../aou-common/aou-common-compose.yaml
services:
app:
container_name: "application-server"
build:
context: .
additional_contexts:
load-envs: service:aou-common-load-envs
restart: always
ports:
- "8787:8787"
volumes:
- .:/workspace:cached
- work:/home/rstudio:cached
tmpfs:
- /home/rstudio/workspace:uid=1000,gid=1000
environment:
"DISABLE_AUTH": "true"
networks:
- app-network
cap_add:
- SYS_ADMIN
devices:
- /dev/fuse
security_opt:
- apparmor:unconfined
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
volumes:
work: