Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
web-et-numerique
web-et-numerique-internet
data.grandlyon.com
web-portal
components
services
csv-catalog-downloader
Commits
abd72cb8
Commit
abd72cb8
authored
Apr 02, 2019
by
Alessandro CERIONI
Browse files
Replacing cache folder with a Docker volume.
parent
103258ed
Pipeline
#3204
failed with stages
in 3 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
abd72cb8
...
...
@@ -9,7 +9,7 @@ build_development:
script
:
-
export TAG=dev
-
export CSV_CATALOG_DOWNLOAD_SERVICE_BIND_PORT=4000
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=
${PWD}/
catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CONFIG_FILE_PATH=${PWD}/config.yaml
-
docker-compose build
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
...
...
@@ -24,7 +24,7 @@ build_release:
script
:
-
export TAG=$(echo $CI_COMMIT_TAG | sed 's/v//g')
-
export CSV_CATALOG_DOWNLOAD_SERVICE_BIND_PORT=4040
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=
${PWD}/
catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CONFIG_FILE_PATH=${PWD}/config.yaml
-
docker-compose build
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
...
...
@@ -37,7 +37,7 @@ deploy_development:
script
:
-
export TAG=dev
-
export CSV_CATALOG_DOWNLOAD_SERVICE_BIND_PORT=4040
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=
${PWD}/
catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CONFIG_FILE_PATH=${PWD}/config.yaml
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
docker-compose pull
...
...
@@ -53,7 +53,7 @@ deploy_staging:
script
:
-
export TAG=staging
-
export CSV_CATALOG_DOWNLOAD_SERVICE_BIND_PORT=4140
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=
${PWD}/
catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME=catalog-cache-${TAG}
-
export CSV_CATALOG_DOWNLOAD_SERVICE_CONFIG_FILE_PATH=${PWD}/config.yaml
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
-
TAG=dev docker-compose pull
...
...
docker-compose.yml
View file @
abd72cb8
...
...
@@ -9,3 +9,6 @@ services:
volumes
:
-
${CSV_CATALOG_DOWNLOAD_SERVICE_CONFIG_FILE_PATH}:/app/config.yaml:ro
-
${CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME}:/app/cache
volumes
:
${CSV_CATALOG_DOWNLOAD_SERVICE_CACHE_VOLUME}
:
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment