Merge pull request #143 from ckan/install-volumes-2
volume for pip cache, keep volumes
This commit is contained in:
commit
b70bd39369
@ -2,6 +2,9 @@ volumes:
|
|||||||
ckan_storage:
|
ckan_storage:
|
||||||
pg_data:
|
pg_data:
|
||||||
solr_data:
|
solr_data:
|
||||||
|
pip_cache:
|
||||||
|
site_packages:
|
||||||
|
vscode_server:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
@ -22,12 +25,13 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ckan_storage:/var/lib/ckan
|
- ckan_storage:/var/lib/ckan
|
||||||
- ./src:/srv/app/src_extensions
|
- ./src:/srv/app/src_extensions
|
||||||
- /usr/lib/python3.10/site-packages
|
- pip_cache:/root/.cache/pip
|
||||||
- /root/.vscode-server
|
- site_packages:/usr/lib/python3.10/site-packages
|
||||||
|
- vscode_server:/root/.vscode-server
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
|
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
|
||||||
|
|
||||||
datapusher:
|
datapusher:
|
||||||
image: ckan/ckan-base-datapusher:${DATAPUSHER_VERSION}
|
image: ckan/ckan-base-datapusher:${DATAPUSHER_VERSION}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
@ -2,6 +2,8 @@ volumes:
|
|||||||
ckan_storage:
|
ckan_storage:
|
||||||
pg_data:
|
pg_data:
|
||||||
solr_data:
|
solr_data:
|
||||||
|
pip_cache:
|
||||||
|
site_packages:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
@ -40,7 +42,8 @@ services:
|
|||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
volumes:
|
volumes:
|
||||||
- ckan_storage:/var/lib/ckan
|
- ckan_storage:/var/lib/ckan
|
||||||
- /usr/lib/python3.10/site-packages
|
- pip_cache:/root/.cache/pip
|
||||||
|
- site_packages:/usr/lib/python3.10/site-packages
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
|
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user