forked from ansible/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dev build and run process (ansible#107)
* Adds development container build * Finish dev build process. Remove unneeded bits. * Always console log. Don't require an email address. * First go at contributing
- Loading branch information
Chris Houseknecht
authored
Oct 27, 2017
1 parent
ab65a15
commit 449628e
Showing
34 changed files
with
407 additions
and
225 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,9 @@ | ||
#!/bin/bash | ||
|
||
set -o nounset | ||
set -o errexit | ||
|
||
docker build --rm -t galaxy-build -f scripts/docker-release/Dockerfile.build . | ||
|
||
docker build --rm -t galaxy-dev -f scripts/docker-dev/Dockerfile . | ||
|
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,37 @@ | ||
version: '3' | ||
|
||
services: | ||
galaxy: | ||
image: galaxy-dev:latest | ||
build: | ||
context: ./docker-dev | ||
volumes: | ||
- ${PWD}:/galaxy:rw | ||
environment: | ||
- TMUX | ||
ports: | ||
- '8000:8000' | ||
links: | ||
- postgres | ||
- elastic | ||
- memcache | ||
- rabbitmq | ||
postgres: | ||
image: postgres:9.5.4 | ||
environment: | ||
- POSTGRES_DB=galaxy | ||
- POSTGRES_USER=galaxy | ||
- POSTGRES_PASSWORD=galaxy | ||
|
||
elastic: | ||
image: elasticsearch:2.4.1 | ||
|
||
memcache: | ||
image: memcached:latest | ||
|
||
rabbitmq: | ||
image: rabbitmq:latest | ||
environment: | ||
- RABBITMQ_DEFAULT_USER=galaxy | ||
- RABBITMQ_DEFAULT_PASS=galaxy | ||
- RABBITMQ_DEFAULT_VHOST=galaxy |
Oops, something went wrong.