Compare commits
20 Commits
test
...
fa1f342c95
| Author | SHA1 | Date | |
|---|---|---|---|
| fa1f342c95 | |||
| dc94b51647 | |||
| 558e494dfd | |||
| b47ac029bc | |||
| fcbaaab872 | |||
| 1f6ac5d291 | |||
| 58f3f59665 | |||
| 543272ded8 | |||
| e7ca7182c0 | |||
| f49b9fe4c3 | |||
| 3bc1487b29 | |||
| 2bdbf1a313 | |||
| 5af8be33d8 | |||
| 3e582e4d0c | |||
| 668abc799e | |||
| c4106fbfae | |||
| 4cba6a009a | |||
| b5ecc227d0 | |||
| 40668b67dc | |||
| 18c973446d |
@@ -1,3 +0,0 @@
|
||||
GITEA_INSTANCE_URL=<instance_url>
|
||||
GITEA_RUNNER_REGISTRATION_TOKEN=<registration_token>
|
||||
GITEA_RUNNER_NAME=<runner_name>
|
||||
@@ -1,8 +1,3 @@
|
||||
# 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'
|
||||
@@ -29,7 +24,4 @@ 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_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'
|
||||
HOMEPAGE_VAR_GITEA_KEY='your_gitea_api_token'
|
||||
@@ -11,11 +11,10 @@ services:
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/api/healthcheck || exit 1"]
|
||||
interval: 10s
|
||||
timeout: 3s
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3000"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 60s
|
||||
networks:
|
||||
- homepage-net
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Where your media will be stored (if using bind mount, otherwise leave empty)
|
||||
# Where your media will be stored
|
||||
DATA_FOLDER=/path/to/data
|
||||
|
||||
# URL for your domain for Mealie
|
||||
|
||||
@@ -12,25 +12,22 @@ services:
|
||||
limits:
|
||||
memory: 1000M #
|
||||
volumes:
|
||||
- mealie_data:/app/data/
|
||||
- ${DATA_FOLDER}:/app/data/
|
||||
environment:
|
||||
# Set Backend ENV Variables Here
|
||||
ALLOW_SIGNUP: "false"
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
TZ: Europe/Warsaw
|
||||
BASE_URL: ${BASE_URL:-https://mealie.yourdomain.com}
|
||||
BASE_URL: ${YOUR_DOMAIN:-https://mealie.yourdomain.com}
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "python -c 'import socket; s = socket.socket(); s.connect((\"localhost\", 9000))'"]
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
networks:
|
||||
- mealie-net
|
||||
|
||||
volumes:
|
||||
mealie_data:
|
||||
|
||||
networks:
|
||||
mealie-net:
|
||||
driver: bridge
|
||||
@@ -1,17 +0,0 @@
|
||||
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:
|
||||
Reference in New Issue
Block a user