Skip to content

Commit

Permalink
Use latest tag in docker-compose.ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
carlomion committed Apr 17, 2024
1 parent 1533afa commit 8dcff52
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion .github/docker-compose.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,22 @@

services:
web:
image: smithmicro/n7m-web:latest
restart: 'no'

ui:
image: smithmicro/n7m-ui:latest
restart: 'no'

app:
image: smithmicro/n7m-app:latest
restart: 'no'


feed:
image: smithmicro/n7m-app:latest

gis:
image: smithmicro/n7m-gis:15
restart: 'no'
# Define a healthcheck to wait for the postgres container to be online
healthcheck:
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:
web:
build: web
image: smithmicro/n7m-web
image: smithmicro/n7m-web:4.3
restart: always
ports:
- "8080:80"
Expand All @@ -13,12 +13,12 @@ services:
mem_limit: 100m
ui:
build: ui
image: smithmicro/n7m-ui
image: smithmicro/n7m-ui:3.4
restart: always
mem_limit: 100m
app:
build: app
image: smithmicro/n7m-app
image: smithmicro/n7m-app:4.3
#restart: always
environment:
- PGPASSWORD=n7m-geocoding
Expand All @@ -27,7 +27,7 @@ services:
- gis
mem_limit: 200m
feed:
image: smithmicro/n7m-app
image: smithmicro/n7m-app:4.3
depends_on:
- gis
environment:
Expand All @@ -41,7 +41,7 @@ services:
- ./data:/data/
gis:
build: gis
image: smithmicro/n7m-gis
image: smithmicro/n7m-gis:15
restart: always
ports:
- "5432:5432"
Expand Down

0 comments on commit 8dcff52

Please sign in to comment.