16 lines
419 B
YAML
16 lines
419 B
YAML
when:
|
|
event:
|
|
- push
|
|
- manual
|
|
- cron
|
|
|
|
steps:
|
|
build:
|
|
image: docker:26
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
commands:
|
|
- echo $REGISTRY_PASS | docker login 192.168.100.202:5005 -u $REGISTRY_USER --password-stdin
|
|
- docker build -t 192.168.100.202:5005/nextcloud-logmar:latest .
|
|
- docker push 192.168.100.202:5005/nextcloud-logmar:latest
|
|
#test auto deploy 2 |