Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
06c4c19a6f | |||
8bff7656f6 | |||
5c9eb97db5 |
@ -90,6 +90,7 @@ docker-compose up nginx mysql redis
|
||||
- MySQL
|
||||
- PostgreSQL
|
||||
- MariaDB
|
||||
- Neo4j
|
||||
- Redis
|
||||
- Memcached
|
||||
- Beanstalkd
|
||||
@ -206,7 +207,7 @@ docker-compose up -d nginx mysql
|
||||
*Note: the PHP-FPM, Workspace, Application and Data Containers will automatically run.*
|
||||
|
||||
|
||||
Supported Containers: `nginx`, `mysql`, `redis`, `postgres`, `mariadb`, `memcached`, `beanstalkd`, `beanstalkd-console`, `workspace`, `data`, `php-fpm`, `application`.
|
||||
Supported Containers: `nginx`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `memcached`, `beanstalkd`, `beanstalkd-console`, `workspace`, `data`, `php-fpm`, `application`.
|
||||
|
||||
|
||||
|
||||
|
@ -32,6 +32,7 @@ services:
|
||||
- /var/lib/mariadb
|
||||
- /var/lib/redis
|
||||
- /var/lib/memcached
|
||||
- /var/lib/neo4j/data
|
||||
|
||||
### Nginx Server Container ##################################
|
||||
|
||||
@ -94,6 +95,20 @@ services:
|
||||
links:
|
||||
- php-fpm
|
||||
|
||||
### Neo4j Container #########################################
|
||||
|
||||
neo4j:
|
||||
build: ./neo4j
|
||||
ports:
|
||||
- "7474:7474"
|
||||
- "1337:1337"
|
||||
environment:
|
||||
- NEO4J_AUTH=homestead:secret
|
||||
volumes_from:
|
||||
- data
|
||||
links:
|
||||
- php-fpm
|
||||
|
||||
### Redis Container #########################################
|
||||
|
||||
redis:
|
||||
|
7
neo4j/Dockerfile
Normal file
7
neo4j/Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
FROM tpires/neo4j
|
||||
|
||||
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
|
||||
|
||||
VOLUME /var/lib/neo4j/data
|
||||
|
||||
EXPOSE 7474 1337
|
Reference in New Issue
Block a user