Compare commits

...

15 Commits

Author SHA1 Message Date
42fe309722 bump gitea to v1.24.3 2025-07-16 06:54:42 +00:00
48d89faaee bump prometheus to 3.5.0 2025-07-16 06:53:24 +00:00
Aykhan Shahsuvarov
5ca6236450 wg_easy: add interface name to networks 2025-07-05 11:41:50 +00:00
Aykhan Shahsuvarov
cae7ef2ed6 increase gitea memory limit 2025-07-05 10:13:05 +00:00
c28ad9632b Add restart policy 2025-07-02 14:01:40 +04:00
Aykhan Shahsuvarov
3dda03eee0 add gitea network to main.sh 2025-07-01 21:06:01 +00:00
Aykhan Shahsuvarov
ea305d6b04 bump blinko to v1.1.2 2025-07-01 20:19:31 +00:00
5e67277ab5 bump gitea to 1.24.2 2025-06-21 18:27:55 +00:00
b3361c697f bump gitea to 1.24.1 2025-06-21 10:12:35 +00:00
e66e518eef bump grafana to 12.0.2 2025-06-21 10:11:51 +00:00
1de5d814db bump blinko to 1.1.1 2025-06-17 15:24:06 +00:00
4feed08d9d bump blinko to 1.1.0 2025-06-11 20:53:20 +00:00
be60210294 bump prometheus to 3.4.1 2025-06-11 17:53:39 +00:00
70eb3e0432 bump glance to v0.8.4 2025-06-11 17:50:43 +00:00
b65a887720 bump gitea to 1.24.0 2025-06-11 17:49:36 +00:00
7 changed files with 15 additions and 12 deletions

View File

@@ -8,7 +8,7 @@ networks:
services:
blinko-website:
image: blinkospace/blinko:1.0.7
image: blinkospace/blinko:1.1.2
container_name: blinko-website
environment:
NODE_ENV: production
@@ -24,12 +24,6 @@ services:
options:
max-size: "10m"
max-file: "3"
healthcheck:
test: ["CMD", "curl", "-f", "http://blinko-website:1111/"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
networks:
- blinko
- caddy

View File

@@ -8,7 +8,7 @@ networks:
services:
server:
image: gitea/gitea:1.23.8
image: gitea/gitea:1.24.3
container_name: gitea
environment:
- USER_UID=${USER_UID}
@@ -24,7 +24,7 @@ services:
deploy:
resources:
limits:
memory: 512M
memory: 1G
act:
image: gitea/act_runner:0.2.11

View File

@@ -8,7 +8,7 @@ networks:
services:
glance:
image: glanceapp/glance:v0.8.3
image: glanceapp/glance:v0.8.4
container_name: glance
restart: unless-stopped
networks:

View File

@@ -10,8 +10,9 @@ networks:
services:
grafana:
image: grafana/grafana-enterprise:12.0.1
image: grafana/grafana-enterprise:12.0.2
container_name: grafana
restart: unless-stopped
networks:
- grafana
- caddy

View File

@@ -72,6 +72,7 @@ generate_env_files() {
start_services() {
docker network create caddy 2>/dev/null
docker network create grafana 2>/dev/null
docker network create gitea 2>/dev/null
echo "Starting prometheus..."
$DOCKER_COMPOSE_COMMAND -f ./prometheus/docker-compose.yml up -d

View File

@@ -12,8 +12,9 @@ networks:
services:
prometheus:
image: prom/prometheus:v3.4.0
image: prom/prometheus:v3.5.0
container_name: prometheus
restart: unless-stopped
networks:
- prometheus
- grafana
@@ -26,6 +27,7 @@ services:
node_exporter:
image: quay.io/prometheus/node-exporter:v1.9.1
container_name: node_exporter
restart: unless-stopped
networks:
- prometheus
command:
@@ -37,6 +39,7 @@ services:
cadvisor:
image: gcr.io/cadvisor/cadvisor:v0.49.1
container_name: cadvisor
restart: unless-stopped
networks:
- prometheus
volumes:

View File

@@ -4,9 +4,13 @@ services:
container_name: wg-easy
networks:
caddy:
interface_name: wgeth1
wg:
ipv4_address: 10.42.42.42
ipv6_address: fdcc:ad94:bacf:61a3::2a
interface_name: wgeth0
environment:
WG_DEVICE: wgeth0
volumes:
- ./data:/etc/wireguard
- /lib/modules:/lib/modules:ro