-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
35 lines (35 loc) · 931 Bytes
/
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
version: '2.3'
services:
new-years-dev:
image: 'unboxedtechnology/new-years-resolutions:2.2.8'
ports:
- '8100:8100'
- '35729:35729'
- '53703:53703'
environment:
- API_SERVER
- APP_ID
- APP_URL_SCHEME
- LOCAL_DEV
- PROFILE
- REDUX_DEVTOOLS
- VERSION
- PROD_MODE
volumes:
- './app.config.js:/opt/app/app.config.js'
- './ionic.config.json:/opt/app/ionic.config.json'
- './package.json:/opt/app/package.json'
- './src:/opt/app/src'
- './tsconfig.json:/opt/app/tsconfig.json'
- './tslint.json:/opt/app/tslint.json'
- './webpack:/opt/app/webpack'
command:
- yarn
- serve
new-years-task:
extends: new-years-dev
volumes:
- './docker-compose.yml:/opt/app/docker-compose.yml'
- './scripts:/opt/app/scripts'
- './www:/opt/app/www'
- './yarn.lock:/opt/app/yarn.lock'