Updated to use new directories

Xavier Mertens 2018-06-20 12:58:30 +02:00
parent 0bc6592ccc
commit 82042f605f
1 changed files with 9 additions and 5 deletions

View File

@ -6,12 +6,12 @@ networks:
services: services:
misp-web: misp-web:
build: . build: misp-web
depends_on: depends_on:
- misp-db - misp-db
container_name: misp-web container_name: misp-web
hostname: misp hostname: misp-web
image: misp:latest image: misp-web:latest
restart: always restart: always
networks: networks:
- misp-network - misp-network
@ -33,9 +33,13 @@ services:
- TIMEZONE=Europe/Brussels - TIMEZONE=Europe/Brussels
misp-db: misp-db:
build:
context: misp-db
args:
MYSQL_MISP_PASSWORD: xxxxxxxx
container_name: misp-db container_name: misp-db
hostname: mysql hostname: misp-db
image: mysql/mysql-server:5.7 image: misp-db:latest
restart: always restart: always
networks: networks:
- misp-network - misp-network