forked from AmIBeingObtuse/Youtubestacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomarr Compose File
38 lines (38 loc) · 1.18 KB
/
Homarr Compose File
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
28
29
30
31
32
33
34
35
36
37
38
version: "3"
#---------------------------------------------------------------------#
# Homarr - A simple, yet powerful dashboard for your server. #
#---------------------------------------------------------------------#
services:
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:latest
environment:
- BASE_URL=
#Remove the # if you want to use networks as its optional.
#networks:
#homepage:
#ipv4_address: 172.1.0.3
deploy:
restart_policy:
condition: unless-stopped
resources:
limits:
cpus: "4"
memory: 1024M
restart: unless-stopped
volumes:
- C:\Users\keith\Documents\Docker Stuff\Homarr\config:/app/data/configs
- C:\Users\keith\Documents\Docker Stuff\Homarr\data:/data
- C:\Users\keith\Documents\Docker Stuff\Homarr\icons:/app/public/icons
#- /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations
ports:
- 9222:7575
#Remove the # if you want to use networks. Optional.
#networks:
#homepage:
#driver: bridge
#ipam:
#driver: default
#config:
#- subnet: 172.1.0.0/24
#gateway: 172.1.0.1