Last active
February 20, 2018 12:40
-
-
Save fizerkhan/e4fbcade962a7634a2bde53458c8b9a1 to your computer and use it in GitHub Desktop.
Docker Compose build is not working
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
build: . | |
ports: | |
- 3000:3000 | |
volumes: | |
- ./code-dev/:/usr/src/app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:0.10 | |
CMD [ "npm", "start", "#custom" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
docker-compose --verbose build
It stays there for long time. Nothing happens in the console after the print.