Carbonio CE - Docke...
 
Notifications
Clear all

Carbonio CE - Docker version Ubuntu 20.4

3 Posts
2 Users
0 Likes
1,628 Views
(@eduardo-oliveira)
Joined: 1 year ago
Posts: 2
Topic starter  

Where can I find the images and instructions for installing the Carbonio CE DOCKER?
What is the default username and password for this installation?


   
Quote
(@eduardo-oliveira)
Joined: 1 year ago
Posts: 2
Topic starter  

Doing a search on Docker Hub I found several images, but none with instructions or documentation.
Does anyone have any information that can help me with the installation?
I already tried to run the image, but I couldn't access it.

https://hub.docker.com/search?q=carbonio


   
ReplyQuote
(@emstersj)
Joined: 9 months ago
Posts: 2
 

This is actually working as a rudimentary base.

now i just have to figure out how to get the files stuff running, once this is ok i might consider switching from kopano to carbonio

 

hosts:

127.0.0.1       localhost mail carbonio.mail.local mail.power-server.eu

 

docker-compose.yml

version: '3.6'

services:
  app:
    image: carbonio/ce-single-u20:latest
    hostname: mail.power-server.eu
    container_name: carbonio
    privileged: true  
    cap_add:
      - ALL
    ports:
      - "6071:6071"
      - "444:443"
    extra_hosts:
      - "mail mail.power-server.eu:127.0.0.1"
    volumes:
      - ./container.config:/opt/container.config
      - ./hosts:/etc/hosts:ro
    restart: always

 

Makefile

all:stop rm run log

deploy:pull all

dploy:deploy

start:
        docker-compose start

stop:
        docker-compose stop

logs:
        docker-compose logs -f

restart:
        docker-compose restart

rm:
        docker-compose rm -f

run:
        docker-compose up --force-recreate -d

pull:
        docker-compose pull

bash:
        docker-compose exec -it bash

   
ReplyQuote