mirror of
https://git.chefkoch.net/pub/make-deploy
synced 2025-05-14 11:33:23 +00:00
Deal with unset docker login
This commit is contained in:
parent
a52d5c8ba6
commit
af2cad09b4
8 changed files with 91 additions and 5 deletions
6
testing/apt_config.mk
Normal file
6
testing/apt_config.mk
Normal file
|
@ -0,0 +1,6 @@
|
|||
DEPLOY_NAME = make-deploy-test-apt
|
||||
DEPLOY_PATH = /tmp
|
||||
DEPLOY_HOSTS = localhost
|
||||
DEPLOY_TYPE = apt
|
||||
SSH_USER = $(USER)
|
||||
APT_PACKAGES = curl
|
5
testing/compose_config.mk
Normal file
5
testing/compose_config.mk
Normal file
|
@ -0,0 +1,5 @@
|
|||
DEPLOY_NAME = make-deploy-test-compose
|
||||
DEPLOY_PATH = /tmp
|
||||
DEPLOY_HOSTS = localhost
|
||||
DEPLOY_TYPE = compose
|
||||
SSH_USER = $(USER)
|
7
testing/compose_file_config.mk
Normal file
7
testing/compose_file_config.mk
Normal file
|
@ -0,0 +1,7 @@
|
|||
DEPLOY_NAME = make-deploy-test-compose-file
|
||||
DEPLOY_PATH = /tmp
|
||||
DEPLOY_HOSTS = localhost
|
||||
DEPLOY_TYPE = compose-file
|
||||
SSH_USER = $(USER)
|
||||
DEPLOY_COMPOSE_PROJECT = make-deploy-test-compose-file
|
||||
DEPLOY_COMPOSE_FILE = docker-compose.yml
|
4
testing/docker-compose.yml
Normal file
4
testing/docker-compose.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
services:
|
||||
curl:
|
||||
image: "alpine/curl"
|
||||
command: -s -o /dev/null https://www.test.de
|
Loading…
Add table
Add a link
Reference in a new issue