1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-24 22:46:41 +07:00

#5 fixed build

This commit is contained in:
Fedor Katurov 2021-05-12 10:49:55 +07:00
parent 1bfcda94eb
commit 459d1655da
2 changed files with 2 additions and 4 deletions

View file

@ -3,8 +3,6 @@ services:
db:
container_name: bot-db
image: postgres:11-alpine
ports:
- 5432:5432
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
@ -24,7 +22,7 @@ services:
volumes:
- /etc/localtime:/etc/localtime:ro
- node_modules:/app/node_modules
entrypoint: node ./index.js
entrypoint: ./wait-for-it.sh -t 90 db:5432 -- node ./index.js
depends_on:
- db
volumes: