<_List Material on PHP _>
- Pengenalan
- Bahasa pemrograman
- Web : browser, server
- HTML
- Server side processing / dynamic web
version: '3.5' | |
services: | |
app: | |
build: . | |
volumes: | |
- '.:/app' | |
ports: | |
- '3000:80' | |
environment: |
You have docker volume on one host and want to move that volume to another host. For example, you want to transfer PostgreSQL container with it's volume to another host.
Actually, there is no in-a-box solution from Docker, so we need to:
wget https://filestore.fortinet.com/forticlient/downloads/forticlient_vpn_7.2.2.0753_amd64.deb | |
sudo nano /etc/apt/sources.list | |
deb [arch=amd64] https://repo.fortinet.com/repo/7.0/ubuntu xenial multiverse | |
deb http://ftp.de.debian.org/debian bookworm main | |
sudo wget -O - https://repo.fortinet.com/repo/7.0/ubuntu/DEB-GPG-KEY | sudo apt-key add - | |
sudo apt update | |
sudo dpkg -i forticlient_vpn_7.2.2.0753_amd64.deb | |
sudo apt -f install |