forked from pagemachine/searchable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
49 lines (43 loc) · 1014 Bytes
/
docker-compose.yml
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
version: '3'
services:
app:
image: thecodingmachine/php:${PHP_VERSION:-7.2}-v3-fpm
environment:
TYPO3_VERSION: ${TYPO3_VERSION:-^9.5}
typo3DatabaseHost: mysql
typo3DatabaseUsername: root
typo3DatabasePassword: root
ELASTICSEARCH_HOST: elasticsearch:9200
HTTP_HOST: dummy
depends_on:
- elasticsearch
- mysql
- ssh-key
volumes:
- ./:/var/www/html
- ssh-agent:/.ssh-agent
mysql:
image: mysql:5.7
command:
- mysqld
- --character-set-server=utf8mb4
environment:
MYSQL_ROOT_PASSWORD: root
tmpfs:
- /var/lib/mysql
elasticsearch:
image: elasticsearch:5
ssh-agent:
image: docksal/ssh-agent:1.3
volumes:
- ssh-agent:/.ssh-agent
ssh-key:
image: docksal/ssh-agent:1.3
command: ['bash', '-c', 'ssh-add - </tmp/host-ssh/id_rsa']
depends_on:
- ssh-agent
volumes:
- $HOME/.ssh:/tmp/host-ssh:ro
- ssh-agent:/.ssh-agent
volumes:
ssh-agent: