Commit 702e5075 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Modified docker-compose file. Thanks to Sonia Zorba.

parent 4f1f5b56
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ services:
    - "5432:5432"
  redis:
    image: git.ia2.inaf.it:5050/vospace/vospace-transfer-service/job_cache
    build: ./job_cache
    container_name: job_cache
    depends_on:
    - postgres
@@ -22,7 +21,6 @@ services:
    - "6379:6379"
  rabbitmq:
    image: git.ia2.inaf.it:5050/vospace/vospace-transfer-service/rabbitmq
    build: ./rabbitmq
    container_name: rabbitmq
    depends_on:
    - redis
@@ -74,15 +72,18 @@ services:
    - spring.datasource.password=
    - spring.rabbitmq.host=rabbitmq
    - file-service-url=http://localhost:8081
    - AUTH_CONFIG_PATH=/etc/vospace-auth.properties
    networks:
    - backend_net
    ports:
    - "8082:8080"
    volumes:
      - ./conf/vospace-auth.properties:/etc/vospace-auth.properties
  vospace_file_service:
    image: git.ia2.inaf.it:5050/vospace/vospace-file-service
    container_name: file_service
    environment:
    - server.port=8080
    - server.port=8081
    - file-catalog.datasource.jdbc-url=jdbc:postgresql://file_catalog/vospace_testdb
    - file-catalog.datasource.username=postgres
    - file-catalog.datasource.password=
@@ -91,17 +92,20 @@ services:
    networks:
    - backend_net
    ports:
    - "8081:8080"
    - "8081:8081"
  vospace_ui:
    image: git.ia2.inaf.it:5050/vospace/vospace-ui
    container_name: vospace_ui
    environment:
    - server.port=8080
    - vospace-backend-url=http://vospace:8080/vospace
    - AUTH_CONFIG_PATH=/etc/vospace-ui-auth.properties
    networks:
    - backend_net
    ports:
    - "8080:8080"
    volumes:
      - ./conf/vospace-ui-auth.properties:/etc/vospace-ui-auth.properties
volumes:
  hot_storage:
networks: