123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- version: '3.4'
- services:
- joystream-node:
- image: joystream/node:latest
- build:
-
- context: .
-
- dockerfile: joystream-node.Dockerfile
- container_name: joystream-node
- volumes:
- - /data
- command: --dev --alice --validator --unsafe-ws-external --unsafe-rpc-external --rpc-methods Unsafe --rpc-cors=all --log runtime --base-path /data
- ports:
- - '127.0.0.1:9944:9944'
- - '127.0.0.1:9933:9933'
- colossus-1:
- image: joystream/colossus:latest
- container_name: colossus-1
- restart: on-failure
- build:
- context: .
- dockerfile: colossus.Dockerfile
- depends_on:
- - graphql-server
- volumes:
- - /data
- - /keystore
- ports:
- - '127.0.0.1:3333:3333'
- env_file:
-
- - .env
- environment:
- - COLOSSUS_PORT=3333
- - QUERY_NODE_HOST=graphql-server:${GRAPHQL_SERVER_PORT}
- - WORKER_ID=0
- - ACCOUNT_URI=//testing//worker//Storage//0
-
-
- distributor-1:
- image: joystream/distributor-node
- container_name: distributor-1
- restart: on-failure
- build:
- context: .
- dockerfile: distributor-node.Dockerfile
- depends_on:
- - graphql-server
- volumes:
- - /data
- - /cache
- - /logs
- ports:
- - 127.0.0.1:3334:3334
-
- environment:
-
- JOYSTREAM_DISTRIBUTOR__ENDPOINTS__QUERY_NODE: http://${GRAPHQL_SERVER_HOST}:${GRAPHQL_SERVER_PORT}/graphql
- JOYSTREAM_DISTRIBUTOR__KEYS: "[{\"suri\":\"//testing//workers//Distribution//0\"}]"
- JOYSTREAM_DISTRIBUTOR__WORKER_ID: 0
- JOYSTREAM_DISTRIBUTOR__PORT: 3334
-
-
-
-
-
-
-
-
-
-
- command: ["start"]
- colossus-2:
- image: joystream/colossus:latest
- container_name: colossus-2
- restart: on-failure
- build:
- context: .
- dockerfile: colossus.Dockerfile
- depends_on:
- - graphql-server
- volumes:
- - /data
- - /keystore
- ports:
- - '127.0.0.1:3335:3333'
- env_file:
-
- - .env
- environment:
- - COLOSSUS_PORT=3333
- - QUERY_NODE_HOST=graphql-server:${GRAPHQL_SERVER_PORT}
- - WORKER_ID=1
- - ACCOUNT_URI=//testing//worker//Storage//1
-
-
- distributor-2:
- image: joystream/distributor-node
- container_name: distributor-2
- restart: on-failure
- build:
- context: .
- dockerfile: distributor-node.Dockerfile
- depends_on:
- - graphql-server
- volumes:
- - /data
- - /cache
- - /logs
- ports:
- - 127.0.0.1:3336:3334
-
- environment:
-
- JOYSTREAM_DISTRIBUTOR__ENDPOINTS__QUERY_NODE: http://${GRAPHQL_SERVER_HOST}:${GRAPHQL_SERVER_PORT}/graphql
- JOYSTREAM_DISTRIBUTOR__KEYS: "[{\"suri\":\"//testing//workers//Distribution//1\"}]"
- JOYSTREAM_DISTRIBUTOR__WORKER_ID: 1
- JOYSTREAM_DISTRIBUTOR__PORT: 3334
-
-
-
-
-
-
-
-
-
-
- command: ["start"]
- db:
- image: postgres:12
- container_name: db
- restart: always
- ports:
- - '127.0.0.1:${DB_PORT}:5432'
- volumes:
- - /var/lib/postgresql/data
- env_file:
-
- - .env
- environment:
- POSTGRES_USER: ${DB_USER}
- POSTGRES_PASSWORD: ${DB_PASS}
- POSTGRES_DB: ${INDEXER_DB_NAME}
- graphql-server:
- image: node:14
- container_name: graphql-server
- restart: unless-stopped
- env_file:
-
- - .env
- ports:
- - '127.0.0.1:8081:${GRAPHQL_SERVER_PORT}'
- depends_on:
- - db
- volumes:
- - type: bind
- source: .
- target: /joystream
- working_dir: /joystream
- command: ['yarn', 'workspace', 'query-node-root', 'query-node:start:prod']
- processor:
- image: node:14
- container_name: processor
- restart: unless-stopped
- env_file:
-
- - .env
- environment:
- - INDEXER_ENDPOINT_URL=http://hydra-indexer-gateway:${WARTHOG_APP_PORT}/graphql
- - TYPEORM_HOST=${DB_HOST}
- - TYPEORM_DATABASE=${DB_NAME}
- depends_on:
- - hydra-indexer-gateway
- volumes:
- - type: bind
- source: .
- target: /joystream
- working_dir: /joystream
- command: ['yarn', 'workspace', 'query-node-root', 'processor:start']
- indexer:
- image: joystream/hydra-indexer:3.0.0
- container_name: indexer
- restart: unless-stopped
- env_file:
-
- - .env
- environment:
- - DB_NAME=${INDEXER_DB_NAME}
- - INDEXER_WORKERS=5
- - REDIS_URI=redis://redis:6379/0
- - TYPES_JSON=types.json
- depends_on:
- - db
- - redis
- volumes:
- - ./types/augment/all/defs.json:/home/hydra/packages/hydra-indexer/types.json
- command: >
- sh -c "yarn db:bootstrap && yarn start:prod"
- hydra-indexer-gateway:
- image: joystream/hydra-indexer-gateway:3.0.0
- container_name: hydra-indexer-gateway
- restart: unless-stopped
- env_file:
-
- - .env
- environment:
- - WARTHOG_STARTER_DB_DATABASE=${INDEXER_DB_NAME}
- - WARTHOG_STARTER_DB_HOST=db
- - WARTHOG_STARTER_DB_PASSWORD=${DB_PASS}
- - WARTHOG_STARTER_DB_PORT=${DB_PORT}
- - WARTHOG_STARTER_DB_USERNAME=${DB_USER}
- - WARTHOG_STARTER_REDIS_URI=redis://redis:6379/0
- - WARTHOG_APP_PORT=${WARTHOG_APP_PORT}
- - PORT=${WARTHOG_APP_PORT}
- - DEBUG=*
- ports:
- - '127.0.0.1:4000:${WARTHOG_APP_PORT}'
- depends_on:
- - redis
- - db
- - indexer
- redis:
- image: redis:6.0-alpine
- container_name: redis
- restart: always
- ports:
- - '127.0.0.1:6379:6379'
- pioneer:
- image: nginx
- container_name: pioneer
- volumes:
- - ./pioneer/packages/apps/build:/usr/share/nginx/html
- ports:
- - "127.0.0.1:3000:80"
- environment:
- - NGINX_PORT=80
|