forked from UoMResearchIT/omniverse-workflows-fusion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
launch-galaxy.yml
22 lines (21 loc) · 919 Bytes
/
launch-galaxy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: "3.9"
services:
galaxy:
image: ghcr.io/uomresearchit/galaxy:latest
restart: unless-stopped
container_name: omniverse-galaxy
ports:
- 8080:8080
volumes:
- omni-galaxy-storage:/galaxy/server/
- /galaxy/server/tools:/galaxy/server/tools
- ./galaxy-config/tool_conf.xml:/galaxy/server/config/tool_conf.xml.sample
- ./galaxy-config/job_conf.xml:/galaxy/server/config/job_conf.xml #.sample_basic
- ./galaxy-config/welcome.html:/galaxy/server/static/welcome.html
- ./galaxy-config/galaxy.yml:/galaxy/server/config/galaxy.yml
- ./galaxy-config/mcfe_datatypes.py:/galaxy/server/lib/galaxy/datatypes/mcfe_datatypes.py
- ./galaxy-config/datatypes_conf.xml:/galaxy/server/config/datatypes_conf.xml
- /var/run/docker.sock:/var/run/docker.sock:ro
- /galaxy/server/database:/galaxy/server/database
volumes:
omni-galaxy-storage: