Created
October 19, 2023 05:15
-
-
Save RamiKrispin/1bb06cd2d28e48b5d5d1fa5ffcf0034e to your computer and use it in GitHub Desktop.
ATSAF Docker Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
rstudio: | |
image: "rkrispin/atsaf:dev.0.0.0.9000" | |
ports: | |
- "8787:8787" | |
volumes: | |
- type: "bind" | |
source: "$ATSAF_DIR" | |
target: "/home/rstudio" | |
- type: "bind" | |
source: "$RSTUDIO_CONFIG_PATH" | |
target: "/home/rstudio/.config/rstudio" | |
- type: "bind" | |
source: "$HOME/.Renviron" | |
target: "/home/rstudio/.Renviron" | |
environment: | |
EIA_API_KEY: $EIA_API_KEY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment