Commit 06f34b8a1e673e446bc349f51242adad0c260870

Authored by George Vlahavas
1 parent 248aceabae

Use a docker volume for api

This should help with correcting Jenkins problems and moving files
between Jenkins hosts.

Showing 1 changed file with 4 additions and 2 deletions

docker-compose-jfrog.yml View file @ 06f34b8
... ... @@ -69,7 +69,7 @@
69 69 - "80:80"
70 70 - "443:443"
71 71 volumes:
72   - - ./api:/var/www
  72 + - kea_api_volume:/var/www
73 73  
74 74 api:
75 75 image: registry.curex-project.eu:443/curex-local/kea_api:1.0.4
... ... @@ -78,7 +78,7 @@
78 78 tty: true
79 79 working_dir: /var/www
80 80 volumes:
81   - - ./api:/var/www
  81 + - kea_api_volume:/var/www
82 82  
83 83 #OD
84 84 od:
... ... @@ -136,4 +136,7 @@
136 136 - GF_SECURITY_COOKIE_SAMESITE=none
137 137 - GF_AUTH_ANONYMOUS_ENABLED=true
138 138 - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
  139 +
  140 +volumes:
  141 + kea_api_volume: