Skip to content
This repository has been archived by the owner. It is now read-only.
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
 
 
Cannot retrieve contributors at this time
version: '2'
services:
mariadb:
image: tier/mariadb
container_name: comanage_mariadb
hostname: mariadb
ports:
- "3306:3306"
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
networks:
- i2network
volumes:
- comanage_mysql:/var/lib/mysqlmounted
env_file:
- conf/common.env
- conf/db.env
comanage:
image: my/comanage
container_name: comanage
hostname: comanage
networks:
- i2network
ports:
- "80:80"
- "443:443"
cap_add:
- ALL
- NET_ADMIN
- SYS_ADMIN
volumes:
- ./logs/httpd:/etc/httpd/logs
env_file:
- conf/common.env
- conf/comanage.env
networks:
i2network:
driver: bridge
volumes:
comanage_mysql:
driver: local