Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ services:
build:
context: peatio
dockerfile: Dockerfile
restart: always
depends_on:
- db
- redis
Expand All @@ -22,6 +21,14 @@ services:
- RABBITMQ_HOST=rabbitmq
volumes:
- ./peatio:/home/app
entrypoint:
- /bin/sh
- -xc
command:
- |
./bin/init_config
bundle exec rake db:create db:migrate db:seed
bundle exec puma --config config/puma.rb

peatio_daemons:
build:
Expand Down