Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
d5c28bfec9
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
49 lines (45 sloc) 814 Bytes
version: '2'
services:
mariadb:
image: bigfleet/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
restart: always
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
restart: always
networks:
i2network:
driver: bridge
volumes:
comanage_mysql:
driver: local