Skip to content

Long's blog

Góp nhặt của một kẻ mù công nghệ :p

  • My Info
    • Đỗ Thành Long’s CV
    • My Github
    • My Youtube
    • My Google Scholar
    • My Facebook
  • Café
    • soiqualang_chentreu
    • Trắng Xóa!
    • Capuchino
    • Robusta Café
    • Đen nóng Café
  • Dev
    • Web
    • Công nghệ
    • Uncategorized
  • GIS
    • Shared Map
    • QGIS
    • WebGIS
    • PostgreSQL, PostGIS
    • GeoServer
    • Openlayers
  • Viễn thám
  • Research
    • Ý tưởng
    • Research
    • Sói’s Tutorials
  • Tài liệu
    • GIS – Remote Sensing news
    • Tài liệu
    • Dữ liệu
    • Mẹo vặt
  • My Apps
    • Khoa học thường thức
    • Trắng Xóa – Danh ngôn
    • Harmonica tabs
    • Ảnh chế hài hước, dzui dzui
    • GeoGIS
    • Guitar tabs – Viettabs
    • 2000 Phác đồ điều trị bệnh
    • Q2A
    • Học HTML
    • Openlayers Cookbook
    • OpenLayers3 Leaflte Cookbook
    • OpenLayers Create Code
    • PostgreSQL Tools
    • Get link Remote Sensing Data
    • Lon,Lat Decimal
    • Download Landsat Images
    • Tra cứu vận đơn Viettel Post
    • GET Map OGC WMS, WFS, WCS services
    • PHP-SLD Generate
    • Viettabs.cf – Guitar tabs sharing
    • Files to Videos
  • Other
    • Reading
    • Games
    • Harvest Moon

Tag: Docker

Docker Backup, Restore PostgreSQL Database

Posted on 03/11/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux, Mẹo vặt Tagged backup, database, Docker, postgresql, RestoreLeave a Comment on Docker Backup, Restore PostgreSQL Database

Docker Backup, Restore PostgreSQL Database Single Database PostgreSQL Backup Single Database sudo docker exec -t –user pg_username pg_container_name pg_dump -c -p 5432 -U pg_username "database_name" > "/path/on/your/machine/dump.sql" PostgreSQL Restore Single Database sudo docker exec -t –user pg_username pg_container_name psql -c […]

Read More

Backup Image to Docker Hub

Posted on 19/09/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Backup Docker, DockerLeave a Comment on Backup Image to Docker Hub

Backup Image to Docker Hub # Backup to hub docker commit -p dd63f4ee3263 soiqualang/min_dalle docker tag soiqualang/min_dalle:latest soiqualang/min_dalle docker push soiqualang/min_dalle:latest # Export container mình muốn (dùng id) docker save -o min_dalle.tar soiqualang/min_dalle

Read More

Docker Compose Can’t find a suitable configuration file in this directory

Posted on 18/09/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Docker Compose Can’t find a suitable configuration file in this directory

Docker Compose Can’t find a suitable configuration file in this directory Err Info ERROR: Can't find a suitable configuration file in this directory or any parent. Are you in the right directory? Supported filenames: docker-compose.yml, docker-compose.yaml, compose.yml, compose.yaml Fix Err […]

Read More

[Sưu tầm] Note về Docker-compose

Posted on 09/08/202209/08/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang Tagged Docker, Docker ComposeLeave a Comment on [Sưu tầm] Note về Docker-compose

Note về Docker-compose Nguồn: https://viblo.asia/p/docker-chua-biet-gi-den-biet-dung-phan-3-docker-compose-3P0lPm6p5ox 1. Mở đầu Xin chào các bạn, sau khi đi qua hai phần đầu của series: Docker – Chưa biết gì đến biết dùng, chúng ta đã tìm hiểu Docker, dockerfile, image, container … là gì và sử […]

Read More

Docker clear unused Docker images, volumes

Posted on 08/08/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, LinuxLeave a Comment on Docker clear unused Docker images, volumes

Docker clear unused Docker images, volumes https://stackoverflow.com/questions/32723111/how-to-remove-old-and-unused-docker-images # unused Docker images sudo docker image prune -a # unused Docker volumes sudo docker volume prune

Read More

Backing up your docker volumes

Posted on 27/06/202227/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged backup, Docker, docker volumesLeave a Comment on Backing up your docker volumes

Backing up your docker volumes https://github.com/soiqualang/docker-backup-volume How to backup your volume backup-volume.sh will create a new running docker container and mount the volume to the container. A docker cp will be run and the contents of the volume will be saved into a […]

Read More

Awesome Docker Compose

Posted on 27/06/2022 by soiqualang_chentreu Posted in Lang thang, Linux, Mẹo vặt Tagged Docker, Docker ComposeLeave a Comment on Awesome Docker Compose

Awesome Docker Compose Danh sách các Docker Compose phổ biến Just pull and run =)) https://github.com/docker/awesome-compose Awesome Compose  A curated list of Docker Compose samples. These samples provide a starting point for how to integrate different services using a Compose […]

Read More

[Backup Docker] Saving Images and Containers as Tar Files for Sharing

Posted on 13/06/2022 by soiqualang_chentreu Posted in Lang thang, Mẹo vặt Tagged Backup Containers, Backup Docker, DockerLeave a Comment on [Backup Docker] Saving Images and Containers as Tar Files for Sharing

[Backup Docker] Saving Images and Containers as Tar Files for Sharing Saving Images and Containers as Tar Files for Sharing Imagine a scenario where you have built Docker images and containers that you would be interested to keep and share […]

Read More

Cài Docker Compose trên Ubuntu (Linux)

Posted on 19/05/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Linux Tagged Docker, Docker Compose, Linux, ubuntuLeave a Comment on Cài Docker Compose trên Ubuntu (Linux)

Cài Docker Compose trên Ubuntu (Linux) Lỗi Unable to locate package docker-compose-plugin Ban đầu mình cài với lệnh sudo apt install docker-compose-plugin, tuy nhiên bị lỗi sau: Unable to locate package docker-compose-plugin haugiang@hg-nn-web:/nongnghiep/docker/postgresql$ sudo apt-get update Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease […]

Read More

Fix Docker WSL 2 installation is incomplete

Posted on 14/04/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged Docker, Docker WSL21 Comment on Fix Docker WSL 2 installation is incomplete

Fix Docker WSL 2 installation is incomplete. Error info WSL 2 installation is incomplete. The WSL 2 Linux kernel is now installed using a separate MSI update package. Please click the link and follow the instructions to install the kernel […]

Read More

Cấu hình Docker WSL2 – chuyển vị trí lưu docker sang ổ đĩa khác

Posted on 17/03/202220/08/2022 by soiqualang_chentreu Posted in Công nghệ, Lang thang, Mẹo vặt Tagged Docker, Docker WSL2, WSL2Leave a Comment on Cấu hình Docker WSL2 – chuyển vị trí lưu docker sang ổ đĩa khác

Cấu hình Docker WSL2 – chuyển vị trí lưu docker sang ổ đĩa khác # Ngắt Docker với Data của nó wsl –unregister docker-desktop-data # Import Docker data qua trị trí mới wsl –import docker-desktop-data D:\docker_files\docker_desktop_data\wsl_data "C:\Program Files\Docker\Docker\resources\wsl\wsl-data.tar" –version=2 https://stackoverflow.com/questions/62441307/how-can-i-change-the-location-of-docker-images-when-using-docker-desktop-on-wsl2 […]

Read More

Cấu hình Docker Hyper-V – chuyển vị trí lưu docker sang ổ đĩa khác

Posted on 17/03/2022 by soiqualang_chentreu Posted in Công nghệ, Mẹo vặt Tagged Docker, Hyper-VLeave a Comment on Cấu hình Docker Hyper-V – chuyển vị trí lưu docker sang ổ đĩa khác

Cấu hình Docker Hyper-V – chuyển vị trí lưu docker sang ổ đĩa khác Vào Hyper-V setting Chọn lại đường dẫn lưu docker đến thư mục khác Notes riêng của tôi C:\Users\Public\Documents\Hyper-V\Virtual hard disks E:\WebKCN\Hyper-V\Virtual Hard Disks C:\ProgramData\Microsoft\Windows\Hyper-V

Read More

Docker Export và Import Container

Posted on 14/03/2022 by soiqualang_chentreu Posted in Công nghệ, Linux, Sói's Tutorials Tagged Docker, Export Container, Import ContainerLeave a Comment on Docker Export và Import Container

Docker Export và Import Container Docker liệt kê các container docker container ls Docker export container # Tạo một bản backup images từ container hiện tại docker commit -p 99a148f1a272 my_backup # Export container mình muốn (dùng id) docker save […]

Read More

Docker image in production – câu chuyện 1GB hay 100MB

Posted on 12/05/2021 by soiqualang_chentreu Posted in Lang thang Tagged DockerLeave a Comment on Docker image in production – câu chuyện 1GB hay 100MB

Read More

GitHub Packages (github docker)

Posted on 08/04/2021 by soiqualang_chentreu Posted in Công nghệ, Lang thang Tagged Docker, githubLeave a Comment on GitHub Packages (github docker)

Read More

Posts navigation

Older posts
Buy me a coffee - MOMO

Tags

Android Android studio api App Bundle ArcGIS Capacitor cloudflare database Docker gdal geoserver gis git github Google Earth Engine guitar htaccess Ionic IOS javascript JS GIS Jupyter Notebook leaflet Linux Machine learning map MapServer mysql Nodejs openlayers php Pokemon postgis postgresql python QGIS raster remote sensing sql tools ubuntu viettabs.cf viễn thám webgis wordpress

Recent Posts

  • IONIC Error: Unknown argument: platform
  • QGIS OpenDay November 2022
  • AI tự động sinh JD tuyển dụng
  • [JS GIS] JavaScript GIS Simplify | GeoToolbox
  • [JS GIS] JavaScript GIS Dissolve | GeoToolbox

Recent Comments

  • soiqualang_chentreu on Hướng dẫn đăng ký Google Developer – Upload app to Google Play
  • Huan on Hướng dẫn đăng ký Google Developer – Upload app to Google Play
  • afagh on Sentinel 2 Atmospheric Correction in Google Earth Engine
  • afagh on Sentinel 2 Atmospheric Correction in Google Earth Engine
  • soiqualang_chentreu on Sentinel 2 Atmospheric Correction in Google Earth Engine

Categories

  • Capuchino
  • Công nghệ
  • Dữ liệu
  • GIS
  • Google Earth Engine
  • Lang thang
  • Linux
  • Mẹo vặt
  • QGIS Tutorials and Tips
  • Research
  • Sói's Tutorials
  • Tài liệu
  • Uncategorized
  • Viễn thám
  • Web
  • WebGIS
  • Ý tưởng

Archives

  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • November 2020
  • September 2020
  • August 2020
  • August 2019
  • July 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • October 2017
  • September 2017
  • August 2017
  • June 2017
  • May 2017
  • April 2017

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Copyright 2022. All rights reserved.


Back To Top