-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.sample.yaml
More file actions
24 lines (21 loc) · 781 Bytes
/
Copy pathdocker-compose.sample.yaml
File metadata and controls
24 lines (21 loc) · 781 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
services:
codexa:
# :latest = latest official release. :dev tracks the latest main-branch commit for early
# testing between releases — it can change at any time and is not recommended for regular use.
image: ghcr.io/thehijacker/codexa:latest
container_name: codexa
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- codexa_data:/data
environment:
# REQUIRED — generate with:
# openssl rand -hex 64
JWT_SECRET: "replace_with_a_long_random_secret_string_at_least_64_chars"
# Optional — restrict to your domain when behind a reverse proxy
# CORS_ORIGIN: "https://books.example.com"
# Optional — override default port inside the container
# PORT: "3000"
volumes:
codexa_data: