forked from activerabbit-ai/activerabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
42 lines (39 loc) · 1.44 KB
/
docker-compose.override.yml
File metadata and controls
42 lines (39 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Development overrides for docker-compose.yml
# This file is automatically loaded by docker-compose
services:
web:
environment:
# Enable Rails development features
RAILS_ENV: development
RACK_ENV: development
# Disable bootsnap in Docker for better file watching
DISABLE_BOOTSNAP: 1
# ActiveRabbit Self-Monitoring Configuration
RAILS_LOG_LEVEL: debug
ACTIVERABBIT_SELF_MONITOR_TOKEN: 5b39d8f621e18ff2c67e55c5b6d1aadcc5d9131ebb9be874ef4adbffcc6ce550
ACTIVERABBIT_SELF_MONITOR_PROJECT_ID: 32
# Enable live reloading
command: >
bash -c "
rm -f tmp/pids/server.pid &&
echo 'Waiting for database...' &&
bundle exec rails db:prepare &&
echo 'Building Tailwind CSS...' &&
bundle exec rails tailwindcss:build &&
echo 'Starting Rails server...' &&
bundle exec rails server -b 0.0.0.0 -p 3000
"
sidekiq-ingest:
environment:
RAILS_ENV: development
RACK_ENV: development
RAILS_LOG_LEVEL: debug
ACTIVERABBIT_SELF_MONITOR_TOKEN: 5b39d8f621e18ff2c67e55c5b6d1aadcc5d9131ebb9be874ef4adbffcc6ce550
ACTIVERABBIT_SELF_MONITOR_PROJECT_ID: 32
sidekiq-secondary:
environment:
RAILS_ENV: development
RACK_ENV: development
RAILS_LOG_LEVEL: debug
ACTIVERABBIT_SELF_MONITOR_TOKEN: 5b39d8f621e18ff2c67e55c5b6d1aadcc5d9131ebb9be874ef4adbffcc6ce550
ACTIVERABBIT_SELF_MONITOR_PROJECT_ID: 32