-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI issue where we couldn't start old container
- Loading branch information
1 parent
2473400
commit 52f402b
Showing
2 changed files
with
149 additions
and
83 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
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,18 @@ | ||
version: "3.9" | ||
|
||
services: | ||
webapp-old: | ||
image: "ghcr.io/thepalaceproject/circ-webapp:sha-54fa9ef" | ||
|
||
environment: | ||
SIMPLIFIED_PRODUCTION_DATABASE: "postgresql://palace:test@pg:5432/circ" | ||
PALACE_SEARCH_URL: "http://os:9200" | ||
|
||
depends_on: | ||
pg: | ||
condition: service_healthy | ||
os: | ||
condition: service_healthy | ||
|
||
ports: | ||
- "6500:80" |