We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b0783d commit 1b510bdCopy full SHA for 1b510bd
2 files changed
rstudio-server/server/.env
@@ -0,0 +1,5 @@
1
+RSTUDIO_USER=dp
2
+RSTUDIO_PASSWORD=your-very-secure-pwd-here
3
+RSTUDIO_USERID=1000
4
+RSTUDIO_GROUPID=1000
5
+TZ=UTC
rstudio-server/server/compose.yml
@@ -0,0 +1,22 @@
+services:
+ rstudio-server:
+ image: rocker/tidyverse:4.5
+ container_name: rserver
+ ports:
6
+ - "127.0.0.1:8787:8787"
7
+ restart: unless-stopped
8
+ environment:
9
+ - USER=${RSTUDIO_USER:-rstudio}
10
+ - PASSWORD=${RSTUDIO_PASSWORD}
11
+ - DISABLE_AUTH=false
12
+ - USERID=${RSTUDIO_USERID:-1000}
13
+ - GROUPID=${RSTUDIO_GROUPID:-1000}
14
+ - ROOT=TRUE
15
+ - LANG=en_US.UTF-8
16
+ - TZ=${TZ:-UTC}
17
+ volumes:
18
+ - /home/${USER}/:/home/rstudio/
19
+
20
+volumes:
21
+ rstudio-data:
22
+ driver: local
0 commit comments