diff options
| author | onelin <oscar@nelin.dk> | 2026-07-08 01:54:17 +0000 |
|---|---|---|
| committer | onelin <oscar@nelin.dk> | 2026-07-08 01:54:17 +0000 |
| commit | 43188ddba7de3111f6519bedfcaa41d03d905d92 (patch) | |
| tree | 5840486037f5317c2cc9db3b5fbc45fe82e92267 | |
| parent | 13691537d3fc83e426d8599b5675a2066bec882f (diff) | |
Fix compose & init.sh files
| -rw-r--r-- | docker-compose.yml | 4 | ||||
| -rw-r--r-- | init.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 4fbbbc9..63a114e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,8 +4,8 @@ services: environment: - DOMAIN=${DOMAIN} ports: - - 2222:22 - - 8080:80 + - "2222:22" + - "8080:80" volumes: - gitolite-sshkeys:/etc/ssh/keys - gitolite-git:/var/lib/git @@ -14,7 +14,7 @@ read ENTRY_DOMAIN DOMAIN="${ENTRY_DOMAIN:-$DOMAIN}" echo "DOMAIN=${DOMAIN}" >> .env -(cd cgit && magick -background transparent favicon.png -define icon:auto-resize=16,24,32,48,64,72,96,128,256 favicon.ico) +(cd gitolite/cgit/ && convert -background transparent favicon.png -define icon:auto-resize=16,24,32,48,64,72,96,128,256 favicon.ico) # Build the image, and run initial setup docker-compose build gitolite |
