Skip to content
Snippets Groups Projects
Commit 06d9fd2d authored by Stefano Alberto Russo's avatar Stefano Alberto Russo
Browse files

Moved from "data_rosetta" to "data".

parent 355a7422
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ services: ...@@ -9,7 +9,7 @@ services:
- SAFEMODE=False - SAFEMODE=False
privileged: true privileged: true
volumes: volumes:
- ./data_rosetta/shared:/shared - ./data/shared:/shared
# - ./data/singularity_cache:/rosetta/.singularity/cache # Not working, check permissions... # - ./data/singularity_cache:/rosetta/.singularity/cache # Not working, check permissions...
slurmclusterworker-one: slurmclusterworker-one:
...@@ -20,14 +20,14 @@ services: ...@@ -20,14 +20,14 @@ services:
- SAFEMODE=False - SAFEMODE=False
privileged: true privileged: true
volumes: volumes:
- ./data_rosetta/shared:/shared - ./data/shared:/shared
dregistry: dregistry:
container_name: dregistry container_name: dregistry
hostname: dregistry hostname: dregistry
image: "rosetta/dregistry" image: "rosetta/dregistry"
volumes: volumes:
- ./data_rosetta/dregistry:/var/lib/registry - ./data/dregistry:/var/lib/registry
ports: ports:
- "5000:5000" - "5000:5000"
...@@ -38,7 +38,7 @@ services: ...@@ -38,7 +38,7 @@ services:
environment: environment:
- SAFEMODE=False - SAFEMODE=False
volumes: volumes:
- ./data_rosetta/postgres/data:/data - ./data/postgres/data:/data
webapp: webapp:
image: "rosetta/webapp" image: "rosetta/webapp"
...@@ -62,8 +62,8 @@ services: ...@@ -62,8 +62,8 @@ services:
- "8080:8080" - "8080:8080"
- "7000-7020:7000-7020" - "7000-7020:7000-7020"
volumes: volumes:
- ./data_rosetta/webapp/data:/data - ./data/webapp/data:/data
- ./data_rosetta/webapp/log:/var/log/webapp - ./data/webapp/log:/var/log/webapp
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- ./services/webapp/code:/opt/code - ./services/webapp/code:/opt/code
...@@ -77,7 +77,7 @@ services: ...@@ -77,7 +77,7 @@ services:
- "80:80" - "80:80"
- "443:443" - "443:443"
volumes: volumes:
- ./data_rosetta/proxy/data:/data - ./data/proxy/data:/data
......
...@@ -12,7 +12,7 @@ if [[ $# -eq 0 ]] ; then ...@@ -12,7 +12,7 @@ if [[ $# -eq 0 ]] ; then
fi fi
if [[ "x$2" != "x" ]] ; then if [[ "x$2" != "x" ]] ; then
tail -f -n 1000 data_rosetta/$1/log/$2.log tail -f -n 1000 data/$1/log/$2.log
else else
docker-compose logs -f $1 docker-compose logs -f $1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment