Dockerfile links [`latest` (*latest/Dockerfile*)](https://github.com/ElementoLab/beacon/blob/master/Dockerfile)
[`1.0.0` (*1.0.0/Dockerfile*)](https://github.com/ElementoLab/beacon/blob/1d12dba679b013b8f4a679f492d8f29906b7d678/Dockerfile)
This project is an open source dockerized automated build implementation of the GA4GH Beacon, enabling researchers to light their own beacon with a single command line.
Github Projectβ
Docker Automated Buildβ
The Beacon Project is a simple, open web service that balances the desire of international sites to share genomic data with the need for data protection. Beacons can be implemented by any institution and enable users to determine whether a database contains a genetic variant of interest. Queries such as, "Do you have any genomes with an 'A' at position 100,735 on chromosome 3" (or similar data) are met with either "Yes" or "No.β The Beacon Network β the collection of all organizations that have βlit" beacons β can be queried using the Beacon API or a web-based search engine to determine which, if any, sites have a variant of interest.
Beacon Project Home Pageβ
Beacon on Githubβ
Docker is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of operating-system-level virtualization on Linux. Docker uses the resource isolation features of the Linux kernel such as cgroups and kernel namespaces, and a union-capable filesystem such as aufs and others to allow independent "containers" to run within a single Linux instance, avoiding the overhead of starting and maintaining virtual machines.
Docker Home Pageβ
Docker Run Referenceβ
docker run -d --name "beacon" \
--restart=always \
-p 8080:80 \
elementolab/beacon
http:// 0.0.0.0:8080/beacon on a modern web browser.Create your own beacon.conf file using this templateβ .
docker run -d --name "beacon" \
--restart=always \
-p 8080:80 \
-v my/database/path/beaconData.GRCh37.sqlite:/var/www/html/beacon/ucscBeacon/beaconData.GRCh37.sqlite \
-v /my/beacon/conf/beacon.conf:/var/www/html/beacon/beacon.conf \
elementolab/beacon
docker run -it --name beacon \
-v my/data/:/data \
-v /my/beacon/conf/beacon.conf:/var/www/html/beacon/beacon.conf \
-p 8080:80 elementolab/beacon /bin/bash
cd /var/www/html/beacon/ucscBeacon/; ./query GRCh37 ipm /data/*;
Content type
Image
Digest
Size
270.7 MB
Last updated
over 9 years ago
docker pull elementolab/beacon