25 Commits

Author SHA1 Message Date
dd080fff37 ADD: Gitea server + runner 2025-09-03 15:23:01 +02:00
4915444669 CHANGE: Widget change 2025-08-29 14:28:16 +02:00
467a72c5c6 FIX: Healthcheck should work now 2025-08-29 11:51:37 +02:00
3854dc32d6 ADD: Komodo widget 2025-08-29 11:28:43 +02:00
8ef0d80f02 FIX: Healthchek is now actually working 2025-08-28 20:22:58 +02:00
9d8d2b702f CHAGE: Replaced bind mount with the named one 2025-08-28 20:09:24 +02:00
33ef444052 FIX: Localhost check replaced with IP and now should work 2025-08-28 12:40:36 +02:00
f8328ab96c FIX: Fixed env file 2025-08-28 12:40:36 +02:00
7524f5666c FIX: Dropped env_file from the compose. because it leads to conflicts 2025-08-28 12:40:36 +02:00
e117bd0180 ADD: .env example file 2025-08-28 12:40:04 +02:00
e5adc77c74 FIX: Added blank .env 2025-08-28 12:40:04 +02:00
7b1f93b654 FIX: Fixing broken rebase :D 2025-08-28 12:40:04 +02:00
f234d3846d ADD: Semaphore UI initial commit 2025-08-28 12:40:04 +02:00
ad3f7e1d8f ADD: Semaphore UI initial commit 2025-08-28 12:39:56 +02:00
81c22b7c7a FIX: Changed all .yml to .yaml in orded to have the same way 2025-08-28 12:35:48 +02:00
08f669a770 ADD: Agent compose file 2025-08-27 22:46:08 +02:00
4b81b5abec FIX: Incorrect indentation 2025-08-27 22:29:40 +02:00
e649a0f5de FIX: yaml: line 1: did not find expected key 2025-08-27 22:26:38 +02:00
08c28fc1ef CHANGE: Bind to named mounts 2025-08-27 22:24:55 +02:00
1f192652c4 FIX: Changed mongo version to 4.4.18 because of AVX support 2025-08-27 20:04:33 +02:00
10092050f2 FIX: Typo 2025-08-27 20:00:03 +02:00
15c8e50ca3 CHANGE: Added container names 2025-08-27 19:59:38 +02:00
8381ff9485 FIX: Replaced second compose.env :D 2025-08-27 19:54:49 +02:00
81d68696cf FIX: compose.env was replaced with .env 2025-08-27 19:54:08 +02:00
0e1ef8f63b ADD: Komodo 2025-08-27 19:07:30 +02:00
8 changed files with 40 additions and 8 deletions

View File

3
gitea/.env.example Normal file
View File

@@ -0,0 +1,3 @@
GITEA_INSTANCE_URL=<instance_url>
GITEA_RUNNER_REGISTRATION_TOKEN=<registration_token>
GITEA_RUNNER_NAME=<runner_name>

View File

View File

@@ -1,3 +1,8 @@
# Main variables for homepage
HOMEPAGE_ALLOWED_HOSTS='homepage.example.com,127.0.0.1:3000'
PATH_TO_CONFIG='/docker/data/homepage'
# Variables for services
HOMEPAGE_VAR_PROXMOX_URL=https://proxmox.example.com:8006
HOMEPAGE_VAR_PROXMOX_PAM=root@pam
HOMEPAGE_VAR_PROXMOX_SECRET='your_proxmox_api_token'
@@ -24,4 +29,7 @@ HOMEPAGE_VAR_GRAFANA_URL=https://grafana.example.com
HOMEPAGE_VAR_IT_TOOLS_URL=http://it-tools.example.com
HOMEPAGE_VAR_VAULTWARDEN_URL=https://vaultwarden.example.com
HOMEPAGE_VAR_GITEA_URL=http://gitea.example.com:3000
HOMEPAGE_VAR_GITEA_KEY='your_gitea_api_token'
HOMEPAGE_VAR_GITEA_KEY='your_gitea_api_token'
HOMEPAGE_VAR_KOMODO_URL='http://komodo.example.com:9120/'
HOMEPAGE_VAR_KOMODO_KEY='K-your_komodo_api_key'
HOMEPAGE_VAR_KOMODO_SECRET='S-your_komodo_api_secret'

View File

@@ -11,10 +11,11 @@ services:
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000"]
interval: 30s
timeout: 10s
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/api/healthcheck || exit 1"]
interval: 10s
timeout: 3s
retries: 3
start_period: 60s
networks:
- homepage-net

View File

@@ -1,4 +1,4 @@
# Where your media will be stored
# Where your media will be stored (if using bind mount, otherwise leave empty)
DATA_FOLDER=/path/to/data
# URL for your domain for Mealie

View File

@@ -12,22 +12,25 @@ services:
limits:
memory: 1000M #
volumes:
- ${DATA_FOLDER}:/app/data/
- mealie_data:/app/data/
environment:
# Set Backend ENV Variables Here
ALLOW_SIGNUP: "false"
PUID: 1000
PGID: 1000
TZ: Europe/Warsaw
BASE_URL: ${YOUR_DOMAIN:-https://mealie.yourdomain.com}
BASE_URL: ${BASE_URL:-https://mealie.yourdomain.com}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000"]
test: ["CMD-SHELL", "python -c 'import socket; s = socket.socket(); s.connect((\"localhost\", 9000))'"]
interval: 30s
timeout: 10s
retries: 3
networks:
- mealie-net
volumes:
mealie_data:
networks:
mealie-net:
driver: bridge

View File

@@ -0,0 +1,17 @@
services:
semaphore:
ports:
- 3030:3000
image: semaphoreui/semaphore:v2.16.18
environment:
SEMAPHORE_DB_DIALECT: sqlite
SEMAPHORE_ADMIN: ${ADMIN_USER}
SEMAPHORE_ADMIN_PASSWORD: ${ADMIN_PASS}
SEMAPHORE_ADMIN_NAME: ${ADMIN_NAME}
SEMAPHORE_ADMIN_EMAIL: ${ADMIN_EMAIL}
volumes:
- semaphore-data:/var/lib/semaphore
- semaphore-config:/etc/semaphore
volumes:
semaphore-data:
semaphore-config: