-
Notifications
You must be signed in to change notification settings - Fork 26
Project Saral DevOps
Dileep Gadiraju edited this page Nov 8, 2021
·
3 revisions
version: '3.7'
services:
saral-backend:
image: ${organisation}/${image}:${tag}
deploy:
replicas: 1
update_config:
parallelism: 1
delay: 10s
restart_policy:
condition: on-failure
environment:
PROFILE: dev
PORT: 3005
MONGODB_URL: mongodb://saral-mongodbhost-xxx:27017/saralv1db
JWT_SECRET: SARALDATA_NODE
ports:
- "3005:3005"
networks:
- app
networks:
app:
driver: overlay
external: true