-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (25 loc) · 730 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (25 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
services:
gnomeshade:
image: ghcr.io/vmelnalksnis/gnomeshade:0.8.7
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- gnomeshade_data:/data
environment:
Admin__Password: "Password1!"
Database__Provider: "PostgreSQL"
ConnectionStrings__Gnomeshade: "Server = database; Port = 5432; Database = database; User Id = postgres; Password = Password2!; Maximum Pool Size = 20"
depends_on:
database:
condition: service_started
database:
image: postgres:15.8-bookworm
restart: unless-stopped
volumes:
- postgresql_data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: Password2!
volumes:
gnomeshade_data:
postgresql_data: