-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install dev gems by default and override in production
- Loading branch information
1 parent
164d1c9
commit 3b29bfa
Showing
4 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
services: | ||
app: | ||
build: | ||
args: !reset [] | ||
restart: "no" | ||
sidekiq: | ||
restart: "no" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: '3.3' | ||
services: | ||
app: | ||
build: | ||
args: | ||
- BUNDLE_WITHOUT=test development | ||
mqtt: | ||
entrypoint: ["echo", "MQTT service disabled in production"] | ||
cassandra-1: | ||
entrypoint: ["echo", "Cassandra service disabled in production"] | ||
kairos: | ||
depends_on: !reset [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
services: | ||
db: | ||
deploy: | ||
resources: | ||
limits: | ||
memory: 2gb | ||
app: | ||
build: | ||
args: | ||
- BUNDLE_WITHOUT=test development | ||
mqtt: | ||
entrypoint: ["echo", "MQTT service disabled on staging"] | ||
mqtt-task-main-1: | ||
environment: | ||
MQTT_CLIENT_ID: smartcitizen-staging-api-main-1 | ||
mqtt-task-main-2: | ||
environment: | ||
MQTT_CLIENT_ID: smartcitizen-staging-api-main-2 | ||
mqtt-task-secondary: | ||
environment: | ||
MQTT_CLIENT_ID: "smartcitizen-staging-api-secondary" | ||
|
||
|
||
# cassandra-1: | ||
# entrypoint: ["echo", "Cassandra service disabled on staging"] | ||
# kairos: | ||
# depends_on: !reset [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters