We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9aa13c5 + 609fea7 commit 81e1161Copy full SHA for 81e1161
apps/dokploy/templates/glance/docker-compose.yml
@@ -2,7 +2,10 @@ services:
2
glance:
3
image: glanceapp/glance
4
volumes:
5
- - ../files/app/glance.yml:/app/glance.yml
+ - ../files/app/config/:/app/config
6
+ - ../files/app/assets:/app/assets
7
+ # Optionally, also mount docker socket if you want to use the docker containers widget
8
+ # - /var/run/docker.sock:/var/run/docker.sock:ro
9
ports:
10
- 8080
- restart: unless-stopped
11
+ env_file: .env
apps/dokploy/templates/glance/index.ts
@@ -17,7 +17,7 @@ export function generate(schema: Schema): Template {
17
18
const mounts: Template["mounts"] = [
19
{
20
- filePath: "/app/glance.yml",
+ filePath: "/app/config/glance.yml",
21
content: `
22
branding:
23
hide-footer: true
0 commit comments