moved containers to single location, ignored raw data
parent
f6f687fff5
commit
1a106a553e
@ -1,16 +0,0 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python: Current File",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
version: '3.1'
|
||||
|
||||
services:
|
||||
rxnav-db:
|
||||
image: mariadb:10.4
|
||||
restart: "no"
|
||||
expose:
|
||||
- "3306"
|
||||
volumes:
|
||||
- ./rxnav-in-a-box/mysql:/docker-entrypoint-initdb.d:ro
|
||||
- ./rxnav_data:/
|
||||
environment:
|
||||
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
|
||||
MYSQL_USER: webuser
|
||||
MYSQL_PASSWORD: 9521354c77aa
|
||||
@ -0,0 +1,7 @@
|
||||
# Instructions:
|
||||
Go go [RxNavInABox](https://lhncbc.nlm.nih.gov/RxNav/applications/RxNav-in-a-Box.html) and download the most recent version.
|
||||
|
||||
I have included the version I use.
|
||||
|
||||
Then unzip and run docker-compose.yaml
|
||||
|
||||
Loading…
Reference in New Issue