Просто на сервере дай бог 10 гб свободного места осталось. Не будет ли он на сервере создавать какие то архивы?
А передать надо много, гб 200
Не будет ли он на сервере создавать какие то архивы?
rsync -z
сжимает на лету.--compress, -z
With this option, rsync compresses the file data as it is
sent to the destination machine, which reduces the amount
of data being transmitted -- something that is useful over
a slow connection.
postgres:
image: postgres
restart: unless-stopped
tty: true
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: data
ports:
- "5432:5432"
volumes:
- ./docker/postgres:/var/lib/postgresql/data
networks:
- laravel
DB_CONNECTION=pgsql
DB_HOST=postgres
DB_PORT=5432
DB_DATABASE=data
DB_USERNAME=root
DB_PASSWORD=root