Sou novato no Ubuntu, então acredito que, onde estou preso, está em um problema simples.
Esta é a situação. Eu clonei do github alguns documentos. Todos eles estão em uma pasta no meu desktop. Vamos dizer Supercool. Nesta pasta é skullhead / docker / Dockerfile.
Eu quero rodar este Dockerfile e acho que esse deve ser o caminho:
#
# Skullhead Dockerfile.
# use from the skullhead dir as
# docker built -t skullhead skullhead/
# then 'docker run skullheadhead' and read the output at the end.
# using 'docker ps' and 'docker exec -it {id} /bin/bash' to connect
#
Mas, tão rápido eu escrevo:
pumba@pumba-X938UV:~$ docker build -t skullhead skullhead/
Eu recebo
unable to prepare context: path "skullhead/" not found
Depois disso, tentei:
pumba@pumba-X938UV:su
Password:
root@pumba-X938UV:/home/pumba# cd Desktop/tradingBots/skullhead
root@pumba-X938UV:/home/pumba/Desktop/tradingBots/skullhead#
docker build -t skullhead skullhead/
unable to prepare context: path "skullhead/" not found
root@pumba-X938UV:/home/skullhead/Desktop/tradingBots/skullhead#
ls
app config LICENSE resources
start_docker yarn.lock
artisan copy_to_docker package.json routes storage
bootstrap create_docker phpunit.xml server.php
streaming.py
composer.json database public setup-mac.sh tests
composer.lock docker README.md ssh_docker
webpack.mix.js
root@pumba-X938UV:/home/pumba/Desktop/tradingBots/skullhead#
cd docker
root@pumba-
X938UV:/home/pumba/Desktop/tradingBots/skullhead/docker#
docker build -t skullhead skullhead/
unable to prepare context: path "skullead/" not found
Por que isso não funciona?
Obrigado!