-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
45 lines (41 loc) · 1.09 KB
/
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
version: '3'
services:
web:
build: docker/web/
image: matthiasnoback/decoupling-from-infrastructure-workshop-web
volumes:
- ./:/app
ports:
- 8080:8080
user: ${HOST_UID}:${HOST_GID}
command: public/
env_file:
- .env
php:
build: docker/php/
image: matthiasnoback/decoupling-from-infrastructure-workshop-php
volumes:
- ./:/app:cached
working_dir: /app
user: ${HOST_UID}:${HOST_GID}
depends_on:
- web
- fake_abstractapi
environment:
WEB_HOSTNAME: web
env_file:
- .env
composer:
image: composer:latest
volumes:
- ./:/app:cached
user: ${HOST_UID}:${HOST_GID}
fake_abstractapi:
image: matthiasnoback/decoupling-from-infrastructure-workshop-web
volumes:
- ./test/Adapter/MeetupOrganizing/Infrastructure/Holidays/Fixtures:/app
ports:
- 8081:8080
command: ./
env_file:
- .env