-
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.
fix environment valorisation in docker-compose file
- Loading branch information
Benjamin POCHAT
authored and
Benjamin POCHAT
committed
Feb 22, 2021
1 parent
e078008
commit 4636b60
Showing
3 changed files
with
12 additions
and
8 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 |
---|---|---|
|
@@ -28,17 +28,18 @@ services: | |
- [email protected] | ||
- localeat_smtp_password=localeat | ||
|
||
|
||
ui: | ||
build: | ||
context: "." | ||
dockerfile: ./ui/Dockerfile | ||
args: | ||
- localeat_environment_type=staging | ||
image: benjaminpochat/localeat-ui-staging:${DOCKER_IMAGE_TAG:-latest} | ||
networks: | ||
- hostnet | ||
depends_on: | ||
- core | ||
environment: | ||
- localeat_environment_type=staging | ||
|
||
networks: | ||
hostnet: | ||
|
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 |
---|---|---|
|
@@ -16,17 +16,17 @@ services: | |
build: | ||
context: "." | ||
dockerfile: ./core/Dockerfile | ||
args: | ||
- localeat_datasource_url=jdbc:postgresql://localhost:5432/localeat | ||
- localeat_datasource_username=localeat | ||
- localeat_datasource_password=localeat | ||
- [email protected] | ||
- localeat_smtp_password=localeat | ||
image: benjaminpochat/localeat-core:${DOCKER_IMAGE_TAG:-latest} | ||
networks: | ||
- hostnet | ||
depends_on: | ||
- database | ||
environment: | ||
- localeat_datasource_url=jdbc:postgresql://localhost:5432/localeat | ||
- localeat_datasource_username=localeat | ||
- localeat_datasource_password=localeat | ||
- [email protected] | ||
- localeat_smtp_password=localeat | ||
|
||
ui: | ||
build: | ||
|
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