Skip to content

Commit

Permalink
readme - docker run
Browse files Browse the repository at this point in the history
  • Loading branch information
lecorguille committed Sep 16, 2020
1 parent 8bd5ef1 commit 8afcd80
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

# Marine Eukaryote Genomics Portal Docker

EOSC-Life Demonstrator 4
Please check the project reposiroty: [eosc-life/D4_marine_eukaryote_genomics_portal](https://github.com/eosc-life/D4_marine_eukaryote_genomics_portal)

## Docker Galaxy Stable
This Docker container is based on the quay.io/bgruening/galaxy:20.05
This Docker container is based and built on the bgruening/galaxy:20.05 docker image

https://github.com/bgruening/docker-galaxy-stable

Expand All @@ -16,14 +16,35 @@ https://www.docker.com

## Usage

### Build the Docker image
### From the ready to run Docker image

A Docker image is available on [quay.io](https://quay.io/repository/abimssbr/d4_marine_eukaryote_genomics_portal_docker?tab=info)

```
$ docker run -d -p 8080:80 quay.io/abimssbr/d4_marine_eukaryote_genomics_portal_docker
c22c76071c2a171598974a2adffe1eda0e3a85821f92a9f40a8f1588a47022cc
$ docker logs -f c22c76071c2a171598974a2adffe1eda0e3a85821f92a9f40a8f1588a47022cc
[...]
serving on http://127.0.0.1:8080
[...]
```

Access to the Galaxy instance: http://localhost:8080/

### Build yourself the Docker image

You can custom the Dockerfile and so the Docker image by following the docker-galaxy-stable [documentation](https://github.com/bgruening/docker-galaxy-stable)


```bash
docker build -t abims/eosc-d4 .
docker build -t you/d4_marine_eukaryote_genomics_portal_docker .
docker images
docker run -d -p 8080:80 eosc-d4
docker run -d -p 8080:80 you/d4_marine_eukaryote_genomics_portal_docker
58e06801c2229c39aec39f06361b068bbfc84ae00cac3ede7db0bca256922822
docker logs -f 58e06801c2229c39aec39f06361b068bbfc84ae00cac3ede7db0bca256922822
[...]
serving on http://127.0.0.1:8080
[...]
```

Access to the Galaxy instance: http://localhost:8080/

0 comments on commit 8afcd80

Please sign in to comment.