forked from dpc-sdp/ripple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (37 loc) · 753 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (37 loc) · 753 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
version: '2'
services:
# Storybook site
storybook:
build:
context: .
dockerfile: Dockerfile.storybook
args:
- LAGOON_GIT_BRANCH=
networks:
- default
labels:
lagoon.type: node
environment:
- AMAZEEIO_URL=ripple.docker.amazee.io
- AMAZEEIO=AMAZEEIO
- AMAZEEIO_HTTP_PORT=3000
ports:
- "9001:3000"
# Reference site
app:
build:
context: .
dockerfile: Dockerfile.app
args:
- LAGOON_GIT_BRANCH=
networks:
- default
labels:
lagoon.type: node
environment:
- AMAZEEIO_URL=reference.docker.amazee.io
- AMAZEEIO=AMAZEEIO
- AMAZEEIO_HTTP_PORT=3000
- BASIC_AUTH=0
ports:
- "3000:3000"