Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 780 Bytes

README.md

File metadata and controls

36 lines (32 loc) · 780 Bytes

docker-images

docker run -d \
  --name postgres-ci-app-server \
  --restart=always \
  -e DB_HOST=172.16.9.131 \
  -e DB_USERNAME=postgres_ci \
  -e DB_PASSWORD=iAmAdiscoDancer \
   postgresci/app-server
docker run -d \
  --name postgres-ci-worker \
  --restart=always \
  -e DB_HOST=172.16.9.131 \
  -e DB_USERNAME=postgres_ci \
  -e DB_PASSWORD=iAmAdiscoDancer \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v /tmp/postgres-ci/builds/:/tmp/postgres-ci/builds/ \
   postgresci/worker
docker run -d \
  --name postgres-ci-notifier \
  --restart=always \
  -e DB_HOST=172.16.9.131 \
  -e DB_USERNAME=postgres_ci \
  -e DB_PASSWORD=iAmAdiscoDancer \
  -e APP_ADDRESS=http://185.143.172.56/ \
  -e TELEGRAM_TOKEN=123:SSdd \
   postgresci/notifier