-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
48 lines (44 loc) · 1.05 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
version: '3.0'
services:
iceman-proxy:
container_name: iceman-proxy
image: nginx
ports:
- ${PROXY_PUBLIC_PORT}:80
volumes:
- ./build/nginx/templates:/etc/nginx/templates
- ${ICEMAN_PROJECT}:/var/www/html/iceman
environment:
- ICEMAN_API_HOST=${ICEMAN_API_HOST}
- APP_PORT=${APP_PORT}
depends_on:
- iceman-web
networks:
iceman-development:
aliases:
- ${ICEMAN_API_HOST}
iceman-web:
container_name: iceman-web
build:
context: ./build/node/serve
dockerfile: Dockerfile
ports:
- ${APP_PORT}:3000
volumes:
- ${ICEMAN_PROJECT}:/var/www/html/iceman
working_dir: /var/www/html/iceman
depends_on:
- iceman-watch
networks:
iceman-development:
iceman-watch:
container_name: iceman-watch
build:
context: ./build/node/watch
dockerfile: Dockerfile
volumes:
- ${ICEMAN_PROJECT}:/var/www/html/iceman
working_dir: /var/www/html/iceman
networks:
iceman-development:
name: iceman-development