Komut | Örnek | Açıklama |
---|---|---|
create | docker volume create <volume_name> | Bir şeyi oluşturmak için kullanılır |
inspect | docker volume inspect <volume_name> | Özellik hakkında detaylı bilgi erişmek için kullanılır |
ls | docker volume ls | Özellik ait oluşturulan verilerin listenmesi için kullanılır |
prune | docker volume prune |
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
const style = document.createElement("style") | |
style.textContent = ` | |
.intro, | |
.intro a{ | |
color:#fff; | |
font-family: | |
} | |
/* customizable snowflake styling */ | |
.snowflake { | |
color: #fff; |
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
#!/bin/bash | |
install() { | |
echo "source $PWD/dockerps.sh;" >> ~/.bashrc | |
echo "added dockerps in ~/.bashrc;" | |
exec bash | |
echo "Successfully" | |
} |
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: "3.9" #(Zorunlu)docker engine sürümüne göre version belirlenemsi : https://docs.docker.com/compose/compose-file/compose-file-v3/ | |
services: #containers tanımlanması | |
php: #service adının belirlenmesi | |
restart: always #docker başlatıldığında veya bir şekilde durursa container yeniden başlatır. | |
#restart: no #Default parametresidir. Hiçbir zaman otomatik başlatmaz. | |
#restart: on-failure #hata olursa tekrar başlatır. | |
#restart: unless-stopped #Always ile aynı çalışır. Farkı elle durdurulmuş ise docker yeniden başlatma sonrası başlatılmayacaktır. |
Docker komutlarının çoğunu docker compose da kullanabilmekteyiz bu yüzden burada spesifik olanların derlemesidir.
Komut | Açıklama |
---|---|
docker-compose --help | docker compose komutları hakkında daha çok bilgi edinme |
docker-compose build-d //detach arkaplanda çalıştırmak içindir |
| Komut | Örnek | Açıklama
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
<?php | |
//Sınıfa eklenecek olan özelliğin belirlenmesi | |
interface FeatureInterface | |
{ | |
public function accept(Visitor $visitor); | |
} | |
class FeatureA implements FeatureInterface | |
{ |
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
<?php | |
//Özelliğin soyut sınıfı algoritmanın adımlarının belirlenmesi gereken sınıftır. | |
//Ortak metotlar burada yazılır. | |
abstract class AbstractClass | |
{ | |
//Algoritmayı çalıştırma. | |
public function run() | |
{ | |
$this->work1(); |
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
<?php | |
//Asıl özellik sınıfı farklı durumlara göre hareket eder. | |
class Context | |
{ | |
private State $state; | |
public function __construct(State $state) | |
{ | |
$this->changeState($state); |
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
<?php | |
interface ObserverInterface | |
{ | |
public function work(); | |
} | |
//Observer (Gözlemci) //Takip ettiğin observable göre işleri yapan sınıfıtr. | |
class ObserverA implements ObserverInterface | |
{ |
NewerOlder