This commit is contained in:
2025-05-27 03:38:18 -05:00
parent 990ad5285b
commit c60eab694a
27 changed files with 463 additions and 129 deletions
+28 -5
View File
@@ -29,11 +29,11 @@ services:
- ./volumes/forgejo:/var/lib/gitea
- ./volumes/forgejo/custom:/var/lib/gitea/custom
- ./scripts/forgejo-entrypoint.sh:/usr/local/bin/fix-perms.sh:ro
entrypoint: [ "/bin/sh", "/usr/local/bin/fix-perms.sh" ]
entrypoint: ["/bin/sh", "/usr/local/bin/fix-perms.sh"]
environment:
- USER_UID=1000
- USER_GID=1000
- FORGEJO__server__ROOT_URL=http://localhost:3000/
- FORGEJO__server__ROOT_URL=http://localhost/forgejo/
- FORGEJO__service__DISABLE_REGISTRATION=false
restart: unless-stopped
networks:
@@ -204,13 +204,17 @@ services:
container_name: flame_dashboard_dev
user: "1000:1000"
ports:
- "80:5005"
- "5005:5005"
volumes:
- ./volumes/flame:/app/data
- ./.env.dev:/app/.env:ro
environment:
- PASSWORD=\${FLAME_PASSWORD}
read_only: true
- FLAME_PASSWORD=${FLAME_PASSWORD}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5005/health"]
interval: 10s
timeout: 5s
retries: 3
cap_drop:
- ALL
cap_add:
@@ -221,6 +225,25 @@ services:
- fold-network
restart: unless-stopped
nginx:
image: nginx:alpine
container_name: nginx_dev
ports:
- "80:80"
volumes:
- ./nginx/dev/default.conf:/etc/nginx/conf.d/default.conf:ro
- ./volumes/logs:/var/log/nginx
depends_on:
- ghost
- forgejo
- flame_dashboard
- trilium
- hedgedoc
- nextcloud
networks:
- fold-network
restart: unless-stopped
networks:
fold-network:
driver: bridge