Skip to content
Snippets Groups Projects
Unverified Commit b0198608 authored by Martin Weise's avatar Martin Weise
Browse files

Remove the seeder profile from deployment

parent aa052276
No related branches found
No related tags found
2 merge requests!81New stable release,!43Merge dev to master
...@@ -28,7 +28,7 @@ services: ...@@ -28,7 +28,7 @@ services:
image: fda-metadata-db image: fda-metadata-db
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.5 # ipv4_address: 172.29.0.5
volumes: volumes:
- fda-metadata-db-data:/var/lib/postgresql/data - fda-metadata-db-data:/var/lib/postgresql/data
ports: ports:
...@@ -49,7 +49,7 @@ services: ...@@ -49,7 +49,7 @@ services:
image: fda-discovery-service image: fda-discovery-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.4 # ipv4_address: 172.29.0.4
environment: environment:
SPRING_PROFILES_ACTIVE: docker SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
...@@ -69,7 +69,7 @@ services: ...@@ -69,7 +69,7 @@ services:
image: fda-gateway-service image: fda-gateway-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.2 # ipv4_address: 172.29.0.2
environment: environment:
SPRING_PROFILES_ACTIVE: docker SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
...@@ -87,9 +87,9 @@ services: ...@@ -87,9 +87,9 @@ services:
networks: networks:
fda-userdb: fda-userdb:
fda-public: fda-public:
ipv4_address: 172.29.0.9 # ipv4_address: 172.29.0.9
environment: environment:
SPRING_PROFILES_ACTIVE: docker,seeder SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
ports: ports:
- "9092:9092" - "9092:9092"
...@@ -109,9 +109,9 @@ services: ...@@ -109,9 +109,9 @@ services:
image: fda-container-service image: fda-container-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.8 # ipv4_address: 172.29.0.8
environment: environment:
SPRING_PROFILES_ACTIVE: docker,seeder SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
ports: ports:
- "9091:9091" - "9091:9091"
...@@ -131,7 +131,7 @@ services: ...@@ -131,7 +131,7 @@ services:
build: fda-authentication-service build: fda-authentication-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.14 # ipv4_address: 172.29.0.14
environment: environment:
SPRING_PROFILES_ACTIVE: docker SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
...@@ -151,10 +151,10 @@ services: ...@@ -151,10 +151,10 @@ services:
image: fda-query-service image: fda-query-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.12 # ipv4_address: 172.29.0.12
fda-userdb: fda-userdb:
environment: environment:
SPRING_PROFILES_ACTIVE: docker,seeder SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
ports: ports:
- "9093:9093" - "9093:9093"
...@@ -174,7 +174,7 @@ services: ...@@ -174,7 +174,7 @@ services:
image: fda-table-service image: fda-table-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.11 # ipv4_address: 172.29.0.11
fda-userdb: fda-userdb:
environment: environment:
SPRING_PROFILES_ACTIVE: docker SPRING_PROFILES_ACTIVE: docker
...@@ -199,7 +199,7 @@ services: ...@@ -199,7 +199,7 @@ services:
image: fda-identifier-service image: fda-identifier-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.13 # ipv4_address: 172.29.0.13
environment: environment:
SPRING_PROFILES_ACTIVE: docker SPRING_PROFILES_ACTIVE: docker
TZ: Europe/Vienna TZ: Europe/Vienna
...@@ -217,7 +217,7 @@ services: ...@@ -217,7 +217,7 @@ services:
image: fda-analyse-service image: fda-analyse-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.10 # ipv4_address: 172.29.0.10
fda-userdb: fda-userdb:
command: sh -c "/wait && flask run" # docker-compose should not test the implementation command: sh -c "/wait && flask run" # docker-compose should not test the implementation
environment: environment:
...@@ -241,7 +241,7 @@ services: ...@@ -241,7 +241,7 @@ services:
image: fda-units-service image: fda-units-service
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.7 # ipv4_address: 172.29.0.7
environment: environment:
EUREKA_SERVER: http://fda-discovery-service:9090/eureka/ EUREKA_SERVER: http://fda-discovery-service:9090/eureka/
TZ: Europe/Vienna TZ: Europe/Vienna
...@@ -266,7 +266,7 @@ services: ...@@ -266,7 +266,7 @@ services:
TZ: Europe/Vienna TZ: Europe/Vienna
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.3 # ipv4_address: 172.29.0.3
ports: ports:
- "5672:5672" - "5672:5672"
- "15672:15672" - "15672:15672"
...@@ -286,7 +286,7 @@ services: ...@@ -286,7 +286,7 @@ services:
command: [ "elasticsearch" ] command: [ "elasticsearch" ]
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.6 # ipv4_address: 172.29.0.6
environment: environment:
- discovery.type=single-node - discovery.type=single-node
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
...@@ -308,7 +308,7 @@ services: ...@@ -308,7 +308,7 @@ services:
image: fda-ui image: fda-ui
networks: networks:
fda-public: fda-public:
ipv4_address: 172.29.0.15 # ipv4_address: 172.29.0.15
ports: ports:
- "443:3000" - "443:3000"
volumes: volumes:
...@@ -325,22 +325,3 @@ services: ...@@ -325,22 +325,3 @@ services:
TZ: Europe/Vienna TZ: Europe/Vienna
logging: logging:
driver: json-file driver: json-file
fda-vienna-lines:
restart: on-failure
container_name: fda-vienna-lines
hostname: fda-vienna-lines
build: ./fda-vienna-lines
image: fda-vienna-lines
networks:
fda-public:
ipv4_address: 172.29.0.16
depends_on:
fda-query-service:
condition: service_healthy
environment:
TZ: Europe/Vienna
EXCHANGE: foo
KEY: vienna_public_transport_delays
logging:
driver: json-file
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment