Removed compose file

This commit is contained in:
Joan Sanchez 2020-12-04 13:49:48 +01:00
parent 0cd283172e
commit 73fe28849f
1 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
version: '3.7'
services:
main:
image: registry.verdnatura.es/vn-redmine
restart: always
ports:
- 3000
volumes:
- /mnt/storage/redmine/data:/usr/src/redmine/files
environment:
REDMINE_DB_POSTGRES: db
REDMINE_DB_USERNAME: redmine
REDMINE_DB_PASSWORD: ${REDMINE_DB_PASSWORD}
REDMINE_SECRET_KEY_BASE: ${REDMINE_SECRET_KEY_BASE}
REDMINE_PLUGINS_MIGRATE: "true"
db:
image: postgres
restart: always
volumes:
- db:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=${REDMINE_DB_PASSWORD}
- POSTGRES_USER=redmine
- POSTGRES_DB=redmine
deploy:
replicas: 1
placement:
constraints:
- node.hostname == vch2
volumes:
db: