- person Penulis:
-
Dimas Maryanto
PT. Tabeldata Informatika
- account_balance_wallet Donasi via:
- Saweria a/n Dimas Maryanto
- lock_open Join Premium Members:
- Udemy.com
-
Daftar Materi
-
1. Pengenalan Docker 8
-
2. Docker Registry 3
-
3. Docker Container CLI 8
-
1. Docker CLI (Command Line Interface)
2. Management Docker Container
3. Management Docker Images
4. Run a command in a running container
5. Expose services to outside using ports
6. Copying files/content between container and filesystem
7. Logging, Inspect, & Resource Usage Statistics Containers
8. Run a Container using Environtment File
-
4. Docker Networks 7
-
5. Docker Volumes 5
-
6. Dockerfile 15
-
1. Build Docker Image Overview
2. Usage docker build
3. FROM Instruction
4. Environtment Replacement
5. Copying Resources
6. Excluding files/directories
7. Label Instruction
8. Execution Instruction
9. CMD vs ENTRYPOINT?
10. Exposing Ports
11. User, Volumes and Working Directory
12. Health Check Instruction
13. Multiple Stage Builds
14. Best practices for writing Dockerfiles
15. Best practices for scanning images
-
7. Study Kasus: Build docker image 14
-
1. Build specific docker image by programming languages
2. Build Docker Image for Java Webapp
3. Build Java Web using maven-docker-plugin
4. Build docker image for spring-boot
5. Springboot - using Environtment
6. Springboot - where data such as files/images we stored?
7. Springboot - Using Database
8. Build docker image for Angular Project
9. Angular - Access Rest API
10. Angular - Proxy to backend
11. Build docker image for PHP
12. Build Docker image for Laravel Framework
13. Laravel - Using Frontend & Rest API
14. Laravel - Using Database
-
8. Docker Compose 19
-
1. Overview of Docker Compose
2. Get started with Docker Compose
3. Overview of docker-compose CLI
4. Compose file specification and syntax
5. Environment variables in Compose
6. Volume in Compose
7. Share data between Containers in Compose
8. Using sshfs for share data in Compose
9. Using NFS for share data in Compose
10. Networking Overview in Compose file
11. Network links in Compose file
12. Specify custom networks in Compose file
13. Dependency between services in Compose file
14. Build docker image using Compose file
15. Using profiles with Compose file
16. Multiple Compose files to Add & Override attribute
17. Example use case of multiple compose files
18. Scale services using compose command
19. Use Compose in production
-
9. Study Kasus: Docker Compose 7
-
10. Docker Context 8
-
11. Study Kasus: Docker for CI 8
-
1. Overview of Study Cases using docker for CI
2. Setup environment for CI using Gitlab & Nexus OSS
3. The `.gitlab-ci.yml` file
4. Pipeline: PHP deployment using Gitlab CI
5. Pipeline: Java Web deployment using Gitlab CI
6. Pipeline: spring-boot deploy with Gitlab CI
7. Pipeline: Angular deploy with Gitlab CI
8. Pipeline: Laravel deploy with Gitlab CI
-
12. Docker Machine 7
-
13. Study Kasus: Ansible for Docker 4
-
14. Docker Swarm
- Materi: belum tersedia...
-
15. Study Kasus: Docker Swarm
- Materi: belum tersedia...
-
16. Docker on Cloud using GCP
- Materi: belum tersedia...
- Lastest Posts
- 09 Apr 23 Working with Deployment object
- 26 Feb 23 Study cases: Microservice apps (...
- 05 Feb 23 Welcome to the Nutanix HCF (Hybr...
- 04 Feb 23 Silabus SRE - Nutanix AHV: Pemul...
- 17 Jan 23 What is Workload Resources?
- 17 Jan 23 Overview Kubernetes Workloads re...
- 15 Jan 23 Getting started with Transaction...
- 14 Jan 23 Overview of Concurrency Control
- 14 Jan 23 Time your practice (part 3)
- 08 Jan 23 Cleanup Data from Table
Specify custom networks in Compose file
Hai semuanya di materi kali ini kita akan membahas lebih detail tentang specify custom network di compose file.
Instead of just using the default app network, you can specify your own networks with the top-level networks
key. This lets you create more complex topologies and specify custom network drivers and options. You can also use it to connect services to externally-created networks which aren’t managed by Compose.
Each service can specify what networks to connect to with the service-level networks
key, which is a list of names referencing entries under the top-level networks
key.
Here’s an example Compose file defining two custom networks. The proxy
service is isolated from the mysql
service, because they do not share a network in common - only workpress
can talk to both.
Dan berikut adalah file wordpress-proxy.nginx.template.conf
yang di simpan dalam folder nginx
seperti berikut:
Jika dijalankan maka hasilnya seperti berikut:
➜ docker docker-compose -f .\09-docker-compose\network\specify\docker-compose.yaml -p specify-net up -d
Creating volume "specify-net_mysql_data" with default driver
Creating specify-net_mysql_1 ... done
Creating specify-net_wordpress_1 ... done
Creating specify-net_proxy_1 ... done
➜ docker docker-compose -f .\09-docker-compose\network\specify\docker-compose.yaml -p specify-net ps
Name Command State Ports
---------------------------------------------------------------------------------------------------
specify-net_mysql_1 docker-entrypoint.sh mysqld Up 3306/tcp, 33060/tcp
specify-net_proxy_1 /docker-entrypoint.sh ngin ... Up 0.0.0.0:80->80/tcp,:::80->80/tcp
specify-net_wordpress_1 docker-entrypoint.sh apach ... Up 80/tcp
docker container inspect $(docker-compose -f .\09-docker-compose\network\specify\docker-compose.yaml -p specify-net ps -q) -f '{{.Name}} => {{json .NetworkSettings.Networks}}'
/specify-net_mysql_1 => {
"specify-net_backend":{
"Aliases":[
"34e0a0d75272",
"mysql"
],
"NetworkID":"f4c208b1cb2203c39a83d5b50fb295ed991ed5d5f7069bd87a383bd2525e30da",
"EndpointID":"ec3ad3aabe51d5b60728bc86fae9b415383eed9295724244305b71bc68aec4bb",
"Gateway":"172.23.0.1",
"IPAddress":"172.23.0.2",
"IPPrefixLen":16,
"MacAddress":"02:42:ac:17:00:02"
}
}
/specify-net_proxy_1 => {
"specify-net_frontend":{
"Aliases":[
"proxy",
"5298737da335"
],
"Gateway":"172.24.0.1",
"IPAddress":"172.24.0.3",
"IPPrefixLen":16,
"MacAddress":"02:42:ac:18:00:03"
}
}
/specify-net_wordpress_1 => {
"specify-net_backend":{
"Aliases":[
"wordpress",
"f73d5704d113"
],
"Gateway":"172.23.0.1",
"IPAddress":"172.23.0.3",
"IPPrefixLen":16,
"MacAddress":"02:42:ac:17:00:03"
},
"specify-net_frontend":{
"Aliases":[
"wordpress",
"f73d5704d113"
],
"Gateway":"172.24.0.1",
"IPAddress":"172.24.0.2",
"IPPrefixLen":16,
"MacAddress":"02:42:ac:18:00:02"
}
}
➜ docker docker network inspect $(docker network ls -f label=com.docker.compose.project=specify-net -q) -f '{{.Name}} => {{json .Containers}}'
specify-net_backend => {
"34e0a0d7527219b679a861818b3e8805990046a098dbff31201fb328b048fe8d":{
"Name":"specify-net_mysql_1",
"EndpointID":"ec3ad3aabe51d5b60728bc86fae9b415383eed9295724244305b71bc68aec4bb",
"MacAddress":"02:42:ac:17:00:02",
"IPv4Address":"172.23.0.2/16",
"IPv6Address":""
},
"f73d5704d11395e4520d08e59a2b3b24008b2a821daf6cf7f1c2275ea8095e39":{
"Name":"specify-net_wordpress_1",
"EndpointID":"a3bde3db75fa2c1e4bd8aac6b9f115287fd1fcf9d0351a97d954220152f9c206",
"MacAddress":"02:42:ac:17:00:03",
"IPv4Address":"172.23.0.3/16",
"IPv6Address":""
}
}
specify-net_frontend => {
"5298737da335d3365410d920d3f1472b18f88b7abebec2c24b717335a8dd26c2":{
"Name":"specify-net_proxy_1",
"EndpointID":"b33b9a75483defd04d5c636ba2d25850cbf0740b813838674dc66e58532376a3",
"MacAddress":"02:42:ac:18:00:03",
"IPv4Address":"172.24.0.3/16",
"IPv6Address":""
},
"f73d5704d11395e4520d08e59a2b3b24008b2a821daf6cf7f1c2275ea8095e39":{
"Name":"specify-net_wordpress_1",
"EndpointID":"4f8507ad779853851422bc6bf0d36ccff539b8a089e12d2857ba76824342f98f",
"MacAddress":"02:42:ac:18:00:02",
"IPv4Address":"172.24.0.2/16",
"IPv6Address":""
}
}
Yuk simak juga videonya,
Dan jika temen-temen belajar hal baru kali ini jangan lupa buat Like, Subcribe, dan Share ke temen kalian. Terimakasih!!!