|
|
|
|
|
by tbocek
464 days ago
|
|
Here is mine, I have a docker compose file locally, and this deploy.sh script deploy to my remote machine. That also means that my remote machine is building the image. And I have not found a good solution for secrets/env files yet: #!/usr/bin/env bash
export DOCKER_HOST="ssh://username@host:port"
docker compose up -d --build
|
|