-
Notifications
You must be signed in to change notification settings - Fork 31
Deploying explorer services with docker compose
Ilya Oskin edited this page Sep 18, 2020
·
6 revisions
Prerequisites: Docker, docker-compose
-
Publish service images locally
- Clone https://github.com/ergoplatform/explorer-backend
cd explorer-backend/
docker-compose build
-
Set up working environment
- Create working directory and put your docker-compose.yaml into it (sample is attached)
- Create
.X_env
files with environment vars in order to configure services (all vars are listed in default config of the corresponding service. Example: explorer-api -modules/explorer-api/src/main/resources/application.conf
). These env files are then referenced in service deefinition in docker-compose.yaml:
api: image: oskin1/explorer-api:latest env_file: - .db_env - .redis_env - .http_env ...
.db_env contents:
DB_URL=jdbc:postgresql://postgres:5432/<db_name> DB_USER=<db_useer> DB_PASS=<db_pass>
- Create docker network
docker network create explorer-network
-
Prepare frontend build
- Clone https://github.com/ergoplatform/explorer-frontend.git
cd explorer-frontend
mkdir /<your_working_dir>/front/build
cp -r build /<your_working_dir>/front
mkdir /<your_working_dir>/front/config
- Create
app.config.js
in/<your_working_dir>/front/config
(sample is attached below, you need to changeapiUrl
key pointing to backend API.environments.url
can be pointed to your frontend)
-
Configure other services (such as: nginx, postgres, redis, adminer) according to their documentaion
-
Run
docker-compose up -d
(in your working directory) thendocker ps -a
to make sure everything up and working.
app.config.js
example:
var __APP_CONFIG__ = {
apiUrl: 'https://api.ergoplatform.com',
alternativeLogo: false, // true by default
environments: [
{
name: 'Mainnet',
url: 'https://explorer.ergoplatform.com',
},
],
};
if (typeof global !== 'undefined') {
global.__APP_CONFIG__ = __APP_CONFIG__;
}
docker-compose.yaml
example:
version: '3.4'
services:
nginx:
image: nginx:1.17.9-alpine
ports:
- "443:443"
volumes:
- /data/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- /data/nginx/ssl:/etc/ssl:ro
- /<your_working_dir>/front/build:/usr/share/nginx/html
- /<your_working_dir>/front/config:/usr/share/nginx/config
networks:
- explorer-network
depends_on:
- api
postgres:
image: postgres:11-alpine
shm_size: 2g
environment:
POSTGRES_PASSWORD: <pg_pass>
ports:
- "5432:5432"
volumes:
- /data/postgres:/var/lib/postgresql/data:rw
networks:
- explorer-network
redis:
image: redis:latest
restart: always
command: ["redis-server"]
ports:
- "127.0.0.1:6379:6379"
volumes:
- /data/redis:/usr/local/etc/redis
networks:
- explorer-network
adminer:
image: adminer:4-standalone
ports:
- "8082:8080"
networks:
- explorer-network
grabber:
image: oskin1/chain-grabber:latest
networks:
- explorer-network
env_file:
- .db_env
depends_on:
- postgres
api:
image: oskin1/explorer-api:latest
ports:
- "8081:8081"
networks:
- explorer-network
env_file:
- .db_env
- .redis_env
- .http_env
depends_on:
- postgres
- redis
utx-tracker:
image: oskin1/utx-tracker:latest
networks:
- explorer-network
env_file:
- .db_env
depends_on:
- postgres
utx-broadcaster:
image: oskin1/utx-broadcaster:latest
networks:
- explorer-network
env_file:
- .redis_env
depends_on:
- redis
networks:
explorer-network:
external: true