# Compiles new joystream/node and joystream/apps images if local images not found # and runs a complete joystream development network # To prevent build of docker images run docker-compose with "--no-build" arg version: "3.4" services: joystream-node: image: joystream/node:latest build: # context is relative to the compose file context: . # dockerfile is relative to the 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: image: joystream/colossus:latest restart: on-failure build: context: . dockerfile: colossus.Dockerfile depends_on: - graphql-server-mnt volumes: - /data - /keystore - /logs ports: - '127.0.0.1:3333:3333' env_file: # relative to working directory where docker-compose was run from - .env environment: - COLOSSUS_PORT=3333 - QUERY_NODE_ENDPOINT=http://graphql-server-mnt:${GRAPHQL_SERVER_PORT}/graphql - WORKER_ID=0 - ACCOUNT_URI=//Alice # enable ElasticSearch server # - ELASTIC_SEARCH_ENDPOINT=host.docker.internal:9200 db: image: postgres:12 restart: always ports: - "127.0.0.1:${DB_PORT}:5432" volumes: - /var/lib/postgresql/data env_file: # relative to working directory where docker-compose was run from - .env environment: POSTGRES_USER: ${DB_USER} POSTGRES_PASSWORD: ${DB_PASS} POSTGRES_DB: ${INDEXER_DB_NAME} graphql-server: image: joystream/apps restart: unless-stopped build: context: . dockerfile: apps.Dockerfile network: joystream_default env_file: # relative to working directory where docker-compose was run from - .env ports: - "127.0.0.1:8081:${GRAPHQL_SERVER_PORT}" depends_on: - db command: ["workspace", "query-node-root", "query-node:start:prod"] graphql-server-mnt: image: node:14 restart: unless-stopped env_file: # relative to working directory where docker-compose was run from - .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: joystream/apps restart: unless-stopped build: context: . dockerfile: apps.Dockerfile network: joystream_default env_file: # relative to working directory where docker-compose was run from - .env environment: - INDEXER_ENDPOINT_URL=http://hydra-indexer-gateway:${WARTHOG_APP_PORT}/graphql - TYPEORM_HOST=${DB_HOST} - TYPEORM_DATABASE=${DB_NAME} - WS_PROVIDER_ENDPOINT_URI=${WS_PROVIDER_ENDPOINT_URI} volumes: - ./types/augment/all/defs.json:/joystream/query-node/mappings/lib/generated/types/typedefs.json depends_on: - hydra-indexer-gateway command: ["workspace", "query-node-root", "processor:start"] processor-mnt: image: node:14 restart: unless-stopped env_file: # relative to working directory where docker-compose was run from - .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 restart: unless-stopped env_file: # relative to working directory where docker-compose was run from - .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 restart: unless-stopped env_file: # relative to working directory where docker-compose was run from - .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 restart: always ports: - "127.0.0.1:6379:6379" pioneer: image: joystream/pioneer build: context: . dockerfile: pioneer.Dockerfile ports: - "127.0.0.1:3000:80"