Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
…nthrough
0 contributors

Users who have contributed to this file

version: '2'
services:
mariadb:
image: tier/mariadb
container_name: grouper_mariadb
hostname: mariadb
ports:
- "3306:3306"
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
networks:
- i2network
volumes:
- grouper_mysql:/var/lib/mysqlmounted
restart: always
env_file:
- conf/common.env
- conf/db.env
grouper:
image: my/grouper
container_name: grouper
hostname: grouper
networks:
- i2network
ports:
- "80:80"
- "443:443"
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
volumes:
- ./logs/apache-tomcat:/opt/grouper/2.3.0/apache-tomcat-6.0.35/logs
- ./logs/httpd:/etc/httpd/logs
env_file:
- conf/common.env
- conf/grouper.env
restart: always
networks:
i2network:
driver: bridge
volumes:
grouper_mysql:
driver: local