-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docker-compose file for single-fat version
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# docker-compose wrapper for the single Galaxy container. This is useful for systems like EGI IM. | ||
# Start via `IMAGE_TAG=dev GALAXY_CONFIG_BRAND=foo docker-compose up` | ||
services: | ||
galaxy-server: | ||
image: ${DOCKER_REGISTRY:-quay.io}/${DOCKER_REGISTRY_USERNAME:-bgruening}/galaxy:${IMAGE_TAG:-latest} | ||
build: ./ | ||
environment: | ||
- GALAXY_DEFAULT_ADMIN_USER=admin | ||
- [email protected] | ||
- GALAXY_DEFAULT_ADMIN_PASSWORD=password | ||
- GALAXY_DEFAULT_ADMIN_KEY=fakekey | ||
- GALAXY_DESTINATIONS_DEFAULT=slurm_cluster_docker | ||
- GALAXY_CONFIG_BRAND=${GALAXY_CONFIG_BRAND:-My own Galaxy flavour} | ||
- GALAXY_AUTO_UPDATE_DB=True | ||
hostname: galaxy-server | ||
privileged: True | ||
ports: | ||
- "8080:80" | ||
- "9002:9002" | ||
- "4002:4002" | ||
- "8021:21" | ||
- "8022:22" | ||
volumes: | ||
# This is the directory where all your files from Galaxy will be stored | ||
# on your host system | ||
- ${EXPORT_DIR:-./export}/:/export/:delegated | ||
- ${EXPORT_DIR:-./export}/tus_upload_store:/tus_upload_store:delegated | ||
- /var/run/docker.sock:/var/run/docker.sock |