blob: 2efba431b6808126fb9f3db704906752c08c9698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
##################################################################
# Docker-Compose for setting up and running vnf_catalogue webapp
##################################################################
# Purpose: To setup and run vnf_catalogue webapp
# Usage: docker-compose up
#
# The webapp would be accessible at ip_address:3000
#
# Maintained by Kumar Rishabh :: penguinRaider
##
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
version: "2"
services:
mysql:
# mysql service built on top of vanilla mysql container.
# Defines mysql credentials.
image: mysql
container_name: vnf_catalogue_database
environment:
- MYSQL_USER=vnf_user
- MYSQL_PASSWORD=vnf_password
- MYSQL_DATABASE=vnf_catalogue
- MYSQL_ROOT_PASSWORD=root
volumes:
- ./persistent_data/database/mysql:/var/lib/mysql
phpmyadmin:
image: phpmyadmin/phpmyadmin
links:
- "mysql:mysql"
ports:
- "8181:80"
environment:
PMA_ARBITRARY: 1
MYSQL_USERNAME: vnf_user
MYSQL_PASSWORD: vnf_password
MYSQL_ROOT_PASSWORD: root
#- MYSQL_USERNAME=root
minio:
image: minio/minio
environment:
- MINIO_ACCESS_KEY=vnf_minio
- MINIO_SECRET_KEY=vnf_minio
ports:
- "9000:9000"
volumes:
- ./persistent_data/minio/images:/export
command: server /export
vnf_catalogue:
# The vnf_catalogue webapp service.
build: .
container_name: vnf_catalogue_webapp
depends_on:
- mysql
- minio
# Port on which the node.js server would be exposed <host:container>
# To change host port to say 80 use 80:3000
ports:
- "3000:3000"
volumes:
- ./persistent_data/nodejs_server/public_images/:/usr/src/app/public/uploads
vnf_catalogue_migrate:
# We define another service for database migration. This service will
# migrate the database schema.(Dockerfile resides in migration
# directory).
build: ./migration
container_name: vnf_catalogue_migrate
depends_on:
- mysql
vnf_catalogue_cronjob:
build: ./cronjob
container_name: vnf_catalogue_cronjob
depends_on:
- mysql
|