salix/docker-compose.yml

37 lines
928 B
YAML
Raw Normal View History

2018-12-27 15:10:55 +00:00
version: '3.5'
services:
2019-12-23 10:10:45 +00:00
front:
image: registry.verdnatura.es/salix-front:${TAG}
restart: unless-stopped
build:
context: .
dockerfile: front/Dockerfile
ports:
- ${PORT_FRONT}:80
links:
- back
deploy:
replicas: 3
back:
image: registry.verdnatura.es/salix-back:${TAG}
restart: unless-stopped
build: .
ports:
- ${PORT_BACK}:3000
environment:
- NODE_ENV
configs:
- source: salix_datasources
target: /etc/salix/datasources.json
- source: salix-${BRANCH_NAME}_datasources
target: /etc/salix/datasources.${NODE_ENV}.json
- source: salix_print
target: /etc/salix/print.json
- source: salix-${BRANCH_NAME}_print
target: /etc/salix/print.${NODE_ENV}.json
volumes:
- /mnt/storage/pdfs:/var/lib/salix/pdfs
- /mnt/storage/dms:/var/lib/salix/dms
deploy:
replicas: 6