Skip to content

Commit

Permalink
chore: update db version
Browse files Browse the repository at this point in the history
  • Loading branch information
javierblancoNS committed Feb 3, 2022
2 parents f890edc + 43948c9 commit c090318
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .env.ci
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ NS_ECOTEKA_STUDIO_DOMAIN_NAME=localhost
NS_ECOTEKA_PROXY_API_PORT=8080
NS_ECOTEKA_PROXY_CERTIFICATESRESOLVERS_LE_ACME_EMAIL=noreply@localhost
NS_ECOTEKA_PROXY_HTTP_PORT=8000
NS_ECOTEKA_PROXY_IMAGE=traefik:v2.2
NS_ECOTEKA_PROXY_IMAGE=traefik:v2.6

# DB
NS_ECOTEKA_DB_IMAGE=postgis/postgis:12-master
NS_ECOTEKA_DB_IMAGE=postgis/postgis:14-master
NS_ECOTEKA_DB_NAME=ecoteka
NS_ECOTEKA_DB_PASSWORD=password
NS_ECOTEKA_DB_PORT=5432
Expand Down Expand Up @@ -89,4 +89,4 @@ NS_ECOTEKA_OSM_IMAGE=registry.gitlab.com/natural-solutions/ecoteka:osm-latest
NS_ECOTEKA_LANDING_PAGE_IMAGE=registry.gitlab.com/natural-solutions/ecoteka-landing-page:latest

# OSM_THUMBNAILS
NS_ECOTEKA_OSM_THUMBNAILS_IMAGE=registry.gitlab.com/natural-solutions/ecoteka-osm-thumbnail:latest
NS_ECOTEKA_OSM_THUMBNAILS_IMAGE=registry.gitlab.com/natural-solutions/ecoteka-osm-thumbnail:latest
2 changes: 0 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ NS_ECOTEKA_STUDIO_DOMAIN_NAME={{ ns_ecoteka_studio_domain_name | default('localh
NS_ECOTEKA_PROXY_API_PORT={{ ns_ecoteka_proxy_api_port | default('8080') }}
NS_ECOTEKA_PROXY_CERTIFICATESRESOLVERS_LE_ACME_EMAIL={{ ns_ecoteka_proxy_certificatesresolvers_le_acme_email | default('noreply@localhost') }}
NS_ECOTEKA_PROXY_HTTP_PORT={{ ns_ecoteka_proxy_http_port | default('8000') }}
NS_ECOTEKA_PROXY_IMAGE={{ ns_ecoteka_proxy_image | default('traefik:v2.6') }}

# DB
NS_ECOTEKA_DB_IMAGE={{ ns_ecoteka_db_image | default('postgis/postgis:12-master') }}
NS_ECOTEKA_DB_NAME={{ ns_ecoteka_db_name | default('ecoteka') }}
NS_ECOTEKA_DB_PASSWORD={{ ns_ecoteka_db_password | default('password') }}
NS_ECOTEKA_DB_PORT={{ ns_ecoteka_db_port | default('5432') }}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- celery_worker
- tile_server
- landing_page
image: ${NS_ECOTEKA_PROXY_IMAGE}
image: ${NS_ECOTEKA_PROXY_IMAGE:-traefik:v2.6}
networks:
- traefik
volumes:
Expand All @@ -17,7 +17,7 @@ services:
- traefik.enable=true

db:
image: ${NS_ECOTEKA_DB_IMAGE}
image: ${NS_ECOTEKA_DB_IMAGE:-postgis/postgis:14-master}
networks:
- traefik
volumes:
Expand Down

0 comments on commit c090318

Please sign in to comment.