Carbonio CE - Docke...
 
Notifications
Clear all

Carbonio CE - Docker version Ubuntu 20.4

4 Posts
3 Users
0 Reactions
3,693 Views
(@eduardo-oliveira)
New Member
Joined: 2 years 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)
New Member
Joined: 2 years 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)
New Member
Joined: 2 years 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
(@darkfader)
New Member
Joined: 3 years ago
Posts: 7
 

@emstersj what did you have in container.config? where did it originate? For all I can see the single-server setup is incomplete since it doesn't run a configuration and thus fails to properly setup ldap. The multi-server has this setup script pointing at the container.config file, which I don't see anywhere. I suspect it's part of some package i'm not installing (yet)

I'm at a loss, the only thing I could find beyond this is in ./store/spec/helper/container.sh


   
ReplyQuote