소스 검색

reconcile with upstream

Ken Bingham 6 년 전
부모
커밋
1f082f9447
3개의 변경된 파일20개의 추가작업 그리고 13개의 파일을 삭제
  1. 2 1
      Dockerfile
  2. 11 12
      INSTALL.md
  3. 7 0
      docker-compose.yml

+ 2 - 1
Dockerfile 파일 보기

29
 WORKDIR /home/audiogram
29
 WORKDIR /home/audiogram
30
 
30
 
31
 # Clone repo
31
 # Clone repo
32
-RUN git clone https://github.com/qrkourier/audiogram.git
32
+RUN : breakcache0
33
+RUN git clone https://github.com/brizandrew/audiogram.git
33
 WORKDIR /home/audiogram/audiogram
34
 WORKDIR /home/audiogram/audiogram
34
 #VOLUME /home/audiogram/audiogram
35
 #VOLUME /home/audiogram/audiogram
35
 
36
 

+ 11 - 12
INSTALL.md 파일 보기

111
 
111
 
112
 If you use [Docker](https://www.docker.com/products/docker), you can build an image from the included Dockerfile.
112
 If you use [Docker](https://www.docker.com/products/docker), you can build an image from the included Dockerfile.
113
 
113
 
114
-In addition to installing Docker, you'll need to install Git.  You can do this by installing [GitHub Desktop](https://desktop.github.com/).
114
+In addition to installing Docker, you may need to install Git.  You can do this by installing [GitHub Desktop](https://desktop.github.com/).
115
 
115
 
116
-You can clone the repo and build an image, or build it directly from the repo:
117
-
118
-```sh
119
-git clone https://github.com/nypublicradio/audiogram.git
120
-cd audiogram
121
-docker build -t audiogram .
122
-```
116
+Some operating systems e.g. Ubuntu provide a permission group "docker. You can join this group like `sudo usermod -aG docker $USER` and then it's not necessary to prepend every docker command with `sudo`. It's necessary to log out of the desktop session for this permission group change to take effect.
123
 
117
 
124
-or
118
+You can clone the repo and build an image, or build it directly from the repo:
125
 
119
 
120
+An ephemeral container image can be built and run like
126
 ```sh
121
 ```sh
127
-docker build -t audiogram https://github.com/nypublicradio/audiogram.git
122
+docker build -t audiogram https://github.com/brizandrew/audiogram.git
123
+docker run -p 8888:8888 audiogram
128
 ```
124
 ```
129
 
125
 
130
-Now you can run Audiogram in a container using that image:
126
+or you can clone the source code to obtain the service file for docker compose and run these commands once in order to always have the container running in the background and available at http://localhost:8888.
131
 
127
 
132
 ```sh
128
 ```sh
133
-docker run -p 8888:8888 -t -i audiogram
129
+git clone https://github.com/brizandrew/audiogram.git
130
+cd audiogram
131
+docker build -t audiogram .
132
+docker-compose up
134
 ```
133
 ```
135
 
134
 
136
 ## AWS installation
135
 ## AWS installation

+ 7 - 0
docker-compose.yml 파일 보기

1
+version: '2'
2
+services:
3
+  audiogram:
4
+    image: audiogram
5
+    ports:
6
+        - 8888:8888
7
+    restart: always