-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (43 loc) · 1.01 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
services:
nginx:
image: martinjuul/iplease-nginx:latest
container_name: iplease-nginx
build:
context: ./docker/
args:
BUILD_ARGUMENT_ENV: dev
dockerfile: ./nginx/Dockerfile
restart: unless-stopped
ports:
- "${WEB_PORT_HTTP}:80"
- "${WEB_PORT_TLS}:443"
networks:
- iplease-backtier
volumes:
- ./:/var/www/html:ro,cached
depends_on:
- app
app: &app-template
image: martinjuul/iplease-app:latest
container_name: iplease-app
build:
context: .
args:
BUILD_ARGUMENT_ENV: dev
HOST_UID: ${HOST_UID}
HOST_GID: ${HOST_GID}
XDEBUG_CONFIG: ${XDEBUG_CONFIG}
XDEBUG_VERSION: ${XDEBUG_VERSION}
dockerfile: ./Dockerfile
volumes:
- ./:/var/www/html:cached
networks:
- iplease-backtier
supervisord:
<<: *app-template
container_name: iplease-scheduler
expose: []
command: ["/usr/bin/supervisord"]
networks:
iplease-backtier:
name: iplease-backtier