-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
40 lines (40 loc) · 951 Bytes
/
docker-compose.prod.yml
File metadata and controls
40 lines (40 loc) · 951 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
version: '3.2'
services:
pluginhound-app:
container_name: pluginhound-app
image: ${DOCKER_REGISTRY}/pluginhound/app:${DOCKER_TAG}
build:
context: ./
dockerfile: app-prod.dockerfile
environment:
- TZ=America/New_York
networks:
- app-network
pluginhound-web:
container_name: pluginhound-web
image: ${DOCKER_REGISTRY}/pluginhound/web:${DOCKER_TAG}
build:
context: ./
dockerfile: web-prod.dockerfile
tty: true
environment:
- TZ=America/New_York
ports:
- 443:443
- 80:80
restart: unless-stopped
networks:
- app-network
pluginhound-workers:
container_name: pluginhound-workers
image: ${DOCKER_REGISTRY}/pluginhound/workers:${DOCKER_TAG}
build:
context: ./
dockerfile: workers-prod.dockerfile
environment:
- TZ=America/New_York
networks:
- app-network
networks:
app-network:
driver: bridge