docker build orocrm


orocrm

vidocker-compose.yml
data:
image: djocker/orodata
source_code:
image: djocker/orocrm
db:
image: mysql:5.5
expose:
    - "3306"
environment:
    - MYSQL_ROOT_PASSWORD=root
    - MYSQL_DATABASE=orocrm
    - MYSQL_USER=orocrm
    - MYSQL_PASSWORD=orocrm
volumes_from:
    - data
mail:
image: catatnight/postfix
expose:
    - "25"
environment:
    - maildomain=localhost
    - smtp_user=user@localhost:password
minion:
image: djocker/oromono
links:
    - "db"
    - "mail"
ports:
    - "3080:80"
    - "3088:8080"
volumes_from:
    - data
    - source_code
"docker-compose.yml" 55L, 1159C

docker-compose up -d
WARNING: Found orphan containers (opencart_opencart_1, opencart_mariadb_1) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
Pulling source_code (djocker/orocrm:)...
Trying to pull repository registry.access.redhat.com/djocker/orocrm ...
Trying to pull repository docker.io/djocker/orocrm ...
latest: Pulling from docker.io/djocker/orocrm
22dc81ace0ea: Pull complete
1a8b3c87dba3: Pull complete
91390a1c435a: Pull complete
07844b14977e: Pull complete
b78396653dae: Pull complete
4d70d0e6255e: Pull complete
8015ee846e50: Pull complete
6f9cf0e1e7fc: Pull complete
c501de4f9440: Pull complete
f9dd18591c3d: Pull complete
839ce47b44f3: Pull complete
3c6eef7e1222: Pull complete
Digest: sha256:571f0a756b5509faa6580ffa5bf646a5f28f37a510f8a7b71504cf202f39fcde
Status: Downloaded newer image for docker.io/djocker/orocrm:latest
Pulling data (djocker/orodata:)...
Trying to pull repository registry.access.redhat.com/djocker/orodata ...
Trying to pull repository docker.io/djocker/orodata ...
latest: Pulling from docker.io/djocker/orodata
7520415ce762: Pull complete
Digest: sha256:4e08c3ec9378197c1a7f55f93dc247455db7555fde161b196de7bf24521a69c4
Status: Downloaded newer image for docker.io/djocker/orodata:latest
Pulling db (mysql:5.5)...
Trying to pull repository registry.access.redhat.com/mysql ...
Trying to pull repository docker.io/library/mysql ...
5.5: Pulling from docker.io/library/mysql
f2aa67a397c4: Already exists
1accf44cb7e0: Already exists
2d830ea9fa68: Already exists
740584693b89: Already exists
4d620357ec48: Already exists
302f27b6dac5: Pull complete
cc891ef0eba5: Pull complete
d8885e673ba6: Pull complete
7dc2b2613ec0: Pull complete
a55d2213fe96: Pull complete
baf0b766a7b0: Pull complete
Digest: sha256:7db8727bce27876ba68e8c4bb2d88a33cf4b276c3db8277cf50c034768abfe7a
Status: Downloaded newer image for docker.io/mysql:5.5
Pulling mail (catatnight/postfix:)...
Trying to pull repository registry.access.redhat.com/catatnight/postfix ...
Trying to pull repository docker.io/catatnight/postfix ...
latest: Pulling from docker.io/catatnight/postfix
a3ed95caeb02: Pull complete
bb92073c7a94: Pull complete
255c0b817d4e: Pull complete
b5111d9274a4: Pull complete
2b5c23db3bbc: Pull complete
1fb9bd8e91f3: Pull complete
1775fca35fb6: Pull complete
704b646b3521: Pull complete
7a69bc1c1265: Pull complete
2688108bfd48: Pull complete
Digest: sha256:11684ea62492d31bd65d4f184c6cc02519d00b4b571ea1df8e363ac5e4ee028c
Status: Downloaded newer image for docker.io/catatnight/postfix:latest
Pulling minion (djocker/oromono:)...
Trying to pull repository registry.access.redhat.com/djocker/oromono ...
Trying to pull repository docker.io/djocker/oromono ...
latest: Pulling from docker.io/djocker/oromono
b3e1c725a85f: Pull complete
4daad8bdde31: Pull complete
63fe8c0068a8: Pull complete
4a70713c436f: Pull complete
bd842a2105a8: Pull complete
9830d5361384: Pull complete
56f62f2230a2: Pull complete
f55f26102d94: Pull complete
af742fc79c82: Pull complete
530f199a87df: Pull complete
74849efd1e5a: Pull complete
ddf0539aed38: Pull complete
892940adb447: Pull complete
9ae84670ce95: Pull complete
3d1fdc4b9c8d: Pull complete
8923c19cf5be: Pull complete
Digest: sha256:f17fe0f2bcecc3a00098c745ff21781cedc45f982a6a4c6dce7616c71b9a5e41
Status: Downloaded newer image for docker.io/djocker/oromono:latest
Creating opencart_source_code_1 ... done
Creating opencart_data_1        ... done
Creating opencart_mail_1        ... done
Creating opencart_db_1          ... done
Creating opencart_minion_1      ... done

Comments