13 lines
354 B
YAML
13 lines
354 B
YAML
when:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
build:
|
|
image: docker:26
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
commands:
|
|
- docker login 192.168.100.202:5005 -u $REGISTRY_USER -p $REGISTRY_PASS
|
|
- docker build -t 192.168.100.202:5005/nextcloud-logmar:latest .
|
|
- docker push 192.168.100.202:5005/nextcloud-logmar:latest |