Skip to content

Commit

Permalink
Docker issues (apache#2243)
Browse files Browse the repository at this point in the history
* fix no language attr value in mesh

* Fixed docker issues
  • Loading branch information
hanahmily authored and wu-sheng committed Feb 13, 2019
1 parent 73f49ce commit a17a780
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

oap:
oap:
cd oap; \
cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./ ; \
cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./skywalking.tar.gz ; \
docker build -t skywalking/oap:latest .

ui:
cd ui; \
cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./ ; \
cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./skywalking.tar.gz ; \
docker build -t skywalking/ui:latest .

build: oap ui
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
- 11800:11800
- 12800:12800
volumes:
- ./config:/apache-skywalking-apm-incubating/config:ro
- ./config:/skywalking/config:ro
ui:
image: skywalking/ui
container_name: ui
Expand Down
4 changes: 2 additions & 2 deletions docker/oap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

FROM openjdk:8-jre-alpine

ENV DIST_NAME=apache-skywalking-apm-incubating-bin \
JAVA_OPTS=" -Xms256M -Xmx512M"
ENV DIST_NAME=skywalking \
JAVA_OPTS=" -Xms256M "

# Install required packages
RUN apk add --no-cache \
Expand Down
4 changes: 2 additions & 2 deletions docker/ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

FROM openjdk:8-jre-alpine

ENV DIST_NAME=apache-skywalking-apm-incubating-bin \
JAVA_OPTS=" -Xms256M -Xmx512M"
ENV DIST_NAME=skywalking \
JAVA_OPTS=" -Xms256M "

# Install required packages
RUN apk add --no-cache \
Expand Down

0 comments on commit a17a780

Please sign in to comment.