-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (43 loc) · 901 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (43 loc) · 901 Bytes
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
version: "3.1"
services:
nginx:
build: images/nginx
command: nginx -g "daemon off;"
links:
- php
ports:
- "80:80"
php:
build:
context: images/php
args:
sypian_env: ${SYPIAN_BUILD_ENV-development}
container_name: sypian-server
volumes:
- .:/var/www/html
working_dir: /var/www/html/public
command: php-fpm
links:
- neo4j
ports:
- "9000:9000"
environment:
APP_ENV: local
APP_DEBUG: 'true'
APP_KEY: SomeRandomKey!!!
APP_LOCALE: en
APP_FALLBACK_LOCALE: en
NEO4J_HOST: http://neo4j
NEO4J_PORT: 7474
CACHE_DRIVER: file
QUEUE_DRIVER: sync
GIT_BRANCH: ${TRAVIS_BRANCH-HEAD}
neo4j:
image: "neo4j:latest"
ports:
- 7474:7474
- 7687:7687
volumes:
- ${HOME}/neo4j/data:/data
environment:
- "NEO4J_AUTH=none"