-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
46 lines (39 loc) · 964 Bytes
/
compose.yaml
File metadata and controls
46 lines (39 loc) · 964 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: redis
x-daemonless:
title: "Redis"
icon: ":simple-redis:"
category: "Databases"
description: "Redis key-value store on FreeBSD."
upstream_url: "https://github.com/redis/redis"
web_url: "https://redis.io/"
freshports_url: "https://www.freshports.org/databases/redis/"
user: "bsd"
mlock: false
upstream_binary: false
appjail:
director:
options:
- "alias:"
- "ip4_inherit:"
docs:
env:
PUID: "User ID for the application process"
PGID: "Group ID for the application process"
TZ: "Timezone for the container"
volumes:
/config: "Data and configuration directory"
ports:
6379: "Redis port"
services:
redis:
image: ghcr.io/daemonless/redis:latest
container_name: redis
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/redis:/config
ports:
- "6379:6379"