forked from api-platform/api-platform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
63 lines (60 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3'
services:
app:
build:
context: .
dockerfile: ./Dockerfile
depends_on:
- db
environment:
# Change to prod in production
- SYMFONY_ENV=dev
volumes:
# Comment out the next line in production
- ./:/srv/api-platform:rw
# This is for assets:install
- ./web:/srv/api-platform/web:rw
# If you develop on Linux, comment out the following volumes to just use bind-mounted project directory from host
- /srv/api-platform/var/
- /srv/api-platform/var/cache/
- /srv/api-platform/var/logs/
- /srv/api-platform/var/sessions/
- /srv/api-platform/vendor/
db:
build:
context: ./docker/db
dockerfile: ./Dockerfile
environment:
- MYSQL_DATABASE=api_platform
# You should definitely change the password in production
- MYSQL_PASSWORD=api_platform
- MYSQL_RANDOM_ROOT_PASSWORD=true
- MYSQL_USER=api_platform
volumes:
- db-data:/var/lib/mysql:rw
# You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
# - ./docker/db/data:/var/lib/mysql:rw
nginx:
build:
context: ./docker/nginx
dockerfile: ./Dockerfile
volumes:
# Comment out the next line in production
- ./docker/nginx/conf.d:/etc/nginx/conf.d:ro
- ./web:/srv/api-platform/web:ro
ports:
- "8080:80"
varnish:
build:
context: ./docker/varnish
dockerfile: ./Dockerfile
depends_on:
- app
- nginx
volumes:
- ./docker/varnish/conf:/etc/varnish:ro
ports:
- "80:80"
volumes:
app-web: {}
db-data: {}