-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-prod.yml
More file actions
42 lines (39 loc) · 910 Bytes
/
docker-compose-prod.yml
File metadata and controls
42 lines (39 loc) · 910 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
services:
nginx:
image: martinjuul/iplease-nginx:latest
container_name: iplease-nginx
build:
context: ./docker/
args:
BUILD_ARGUMENT_ENV: prod
dockerfile: ./nginx/Dockerfile
restart: unless-stopped
ports:
- "${WEB_PORT_HTTP}:80"
networks:
- iplease-backtier
volumes:
- ./:/var/www/html:ro,cached
depends_on:
- app
app: &app-template
image: martinjuul/iplease-app:latest
container_name: iplease-app
restart: unless-stopped
build:
context: .
args:
BUILD_ARGUMENT_ENV: prod
HOST_UID: ${HOST_UID}
HOST_GID: ${HOST_GID}
dockerfile: ./Dockerfile
networks:
- iplease-backtier
supervisord:
<<: *app-template
container_name: iplease-scheduler
expose: []
command: ["/usr/bin/supervisord"]
networks:
iplease-backtier:
name: iplease-backtier