This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'make dev' fails to start because of container connection issue on ma…
…cOS (#1705) (#1713) keep the previous changes in `docker-compose.macos.yml` for now revert the changes as they break on Linux Fixes #1705 Signed-off-by: Xavier Coulon <xcoulon@redhat.com>
- Loading branch information
Showing
2 changed files
with
42 additions
and
5 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,39 @@ | ||
version: '2' | ||
|
||
services: | ||
db: | ||
image: registry.centos.org/postgresql/postgresql:9.6 | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
POSTGRESQL_ADMIN_PASSWORD: mysecretpassword | ||
core: | ||
image: docker.io/fabric8/fabric8-wit:latest | ||
# command: -config /usr/local/wit/etc/config.yaml | ||
environment: | ||
F8_AUTH_URL: "http://localhost:8089" | ||
F8_DEVELOPER_MODE_ENABLED: "true" | ||
F8_POSTGRES_HOST: db | ||
F8_POSTGRES_PORT: 5432 | ||
ports: | ||
- "8080:8080" | ||
depends_on: | ||
- auth | ||
db-auth: | ||
image: registry.centos.org/postgresql/postgresql:9.6 | ||
ports: | ||
- "5433:5432" | ||
environment: | ||
POSTGRESQL_ADMIN_PASSWORD: mysecretpassword | ||
auth: | ||
image: docker.io/fabric8/fabric8-auth:latest | ||
# command: -config /usr/local/auth/etc/config.yaml | ||
environment: | ||
AUTH_WIT_URL: "http://localhost:8080" | ||
AUTH_DEVELOPER_MODE_ENABLED: "true" | ||
AUTH_POSTGRES_HOST: db-auth | ||
AUTH_POSTGRES_PORT: 5432 | ||
ports: | ||
- "8089:8089" | ||
depends_on: | ||
- db-auth |
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