Skip to content

Commit

Permalink
docker-compose: fix CRLF, trailing spaces, add license
Browse files Browse the repository at this point in the history
  • Loading branch information
p-l- committed Jul 21, 2018
1 parent 2046141 commit 3922baf
Showing 1 changed file with 41 additions and 25 deletions.
66 changes: 41 additions & 25 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,41 @@
version: '3'
services:
ivredb:
image: mongo
volumes:
- ./var_lib_mongodb:/var/lib/mongodb
- ./var_log_mongodb:/var/log/mongodb
- ./var_lib_neo4j:/var/lib/neo4j/data
# v3
#- ./var_lib_neo4j:/var/lib/neo4j
- ./var_log_neo4j:/var/log/neo4j
restart: always
ivreweb:
image: ivre/web
restart: always
ports:
- "80:80"
depends_on:
- ivredb
ivreclient:
image: ivre/client
volumes:
- ./ivre-share:/ivre-share
depends_on:
- ivredb
# This file is part of IVRE.
# Copyright 2011 - 2018 Pierre LALET <[email protected]>
#
# IVRE is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IVRE is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU General Public License
# along with IVRE. If not, see <http://www.gnu.org/licenses/>.

version: '3'
services:
ivredb:
image: mongo
volumes:
- ./var_lib_mongodb:/var/lib/mongodb
- ./var_log_mongodb:/var/log/mongodb
- ./var_lib_neo4j:/var/lib/neo4j/data
# v3
#- ./var_lib_neo4j:/var/lib/neo4j
- ./var_log_neo4j:/var/log/neo4j
restart: always
ivreweb:
image: ivre/web
restart: always
ports:
- "80:80"
depends_on:
- ivredb
ivreclient:
image: ivre/client
volumes:
- ./ivre-share:/ivre-share
depends_on:
- ivredb

0 comments on commit 3922baf

Please sign in to comment.