mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-12 10:45:38 +02:00
5987703631
For this to work, the following variables will need to be set at Docker hub: - DOCKER_ORG first part of docker repo name (example: mailu) - DOCKER_UN Docker-hub login username (private) - DOCKER_PW Docker-hub login password (private) Note that also Docker hub autobuilds will have to be disabled.
5 lines
93 B
Bash
Executable File
5 lines
93 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker login -u $DOCKER_UN -p $DOCKER_PW
|
|
docker-compose -f tests/build.yml push
|