Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. docker build -t asqatasun/asqatasun:SNAPSHOT .
  2. Sending build context to Docker daemon 83.97 MB
  3. Step 0 : FROM ubuntu:14.04
  4. ---> f5165215139b
  5. Step 1 : MAINTAINER Matthieu Faure <mfaure@asqatasun.org>
  6. ---> Using cache
  7. ---> 167fd29df527
  8. Step 2 : USER root
  9. ---> Using cache
  10. ---> cee25f14aa58
  11. Step 3 : ENV WWWPORT "8080" DATABASE_DB "asqatasun" DATABASE_HOST "localhost" DATABASE_USER "asqatasun" DATABASE_PASSWD "asqaP4sswd" TOMCAT_WEBAPP_DIR "/var/lib/tomcat7/webapps" TOMCAT_USER "tomcat7" ASQA_URL "http://localhost:8080/asqatasun/" ASQA_ADMIN_EMAIL "me@my-email.org" ASQA_ADMIN_PASSWD "myAsqaPassword" ASQA_RELEASE "4.1.0-SNAPSHOT"
  12. ---> Using cache
  13. ---> 1cf07569be01
  14. Step 4 : EXPOSE $WWWPORT
  15. ---> Using cache
  16. ---> 129df218a0ca
  17. Step 5 : WORKDIR /root
  18. ---> Using cache
  19. ---> 34ae0a268267
  20. Step 6 : RUN apt-get update
  21. ---> Using cache
  22. ---> 4f627b3923e1
  23. Step 7 : RUN apt-get -y --no-install-recommends install wget ca-certificates
  24. ---> Using cache
  25. ---> 43699d894e8c
  26. Step 8 : ADD asqatasun-${ASQA_RELEASE}.i386.tar.gz /root/
  27. ---> Using cache
  28. ---> d76ee722c5e9
  29. Step 9 : RUN mv asqatasun*/ ./asqatasun/
  30. ---> Using cache
  31. ---> f395bf214372
  32. Step 10 : RUN cp ./asqatasun/install/xvfb .
  33. ---> Using cache
  34. ---> eaa9b7daeb7f
  35. Step 11 : RUN ./asqatasun/install/pre-requisites.sh
  36. ---> Using cache
  37. ---> 978ba61e2039
  38. Step 12 : RUN service mysql start
  39. ---> Running in 40ef39085782
  40. mysql: unrecognized service
  41. The command '/bin/sh -c service mysql start' returned a non-zero code: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement