fix: deploy

This commit is contained in:
Urko. 2023-12-24 20:57:34 +01:00
parent 6b0c58bdc5
commit da8129fa56
4 changed files with 8 additions and 10 deletions

View File

@ -1,10 +0,0 @@
OWNCLOUD_VERSION=10.13
OWNCLOUD_DOMAIN=localhost:8080
OWNCLOUD_TRUSTED_DOMAINS=localhost
ADMIN_USERNAME=cloud_admin
ADMIN_PASSWORD=fs4jfo74WYFYxCcoVUsNmoyvThYLFoF7PmAReeAVbPtCCJCNhWYa3jw
HTTP_PORT=8080
DB_USERNAME=cloud_user
DB_PASSWORD=gnVognVeF9cfKaKPiVjpThqzcUcLFC9abgCoCTWqCLCMxqtfTCMcNoM
DB_ROOT_PASSWORD=KswHciqHYwAnTJsNyXWCHjqFmJW4pYVfgPyhMh9JdjwdCUciwMNa7ad

View File

@ -1,6 +1,13 @@
#!/bin/bash
# DEPLOYTIME=$(date +%s%3N)
# Check if .env file exists
if [ ! -f .env ]; then
echo "Error: .env file not found in /var/www/owncloud"
exit 1
fi
export $(cat .env | xargs)
envsubst < docker-stack.yml | docker stack deploy selfhosted-owncloud --compose-file=docker-stack.yml --with-registry-auth --resolve-image always
# curl -X POST https://log.spares.nu/api/annotations \

View File

@ -49,6 +49,7 @@ services:
retries: 5
volumes:
- mysql:/var/lib/mysql
- ./mariadb-init.sh:/docker-entrypoint-initdb.d/mariadb-init.sh
redis:
image: redis:6

0
mariadb-init.sh Normal file
View File