-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yaml
More file actions
26 lines (25 loc) · 941 Bytes
/
Copy pathcompose.yaml
File metadata and controls
26 lines (25 loc) · 941 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
services:
postizer:
build: .
image: postizer:latest
container_name: postizer
restart: unless-stopped
ports:
- "8080:8080"
environment:
POSTIZER_ADDR: ":8080"
POSTIZER_ADMIN_USER: "${POSTIZER_ADMIN_USER:-admin}"
POSTIZER_ADMIN_PASSWORD: "${POSTIZER_ADMIN_PASSWORD:-change-this-password}"
POSTIZER_SESSION_SECRET: "${POSTIZER_SESSION_SECRET:-change-this-long-random-secret}"
POSTIZER_REPO_URL: "${POSTIZER_REPO_URL:-https://github.com/WiDayn/Postizer.git}"
POSTIZER_RELEASE_VERSION: "${POSTIZER_RELEASE_VERSION:-latest}"
POSTIZER_SELF_UPDATE_INTERVAL: "${POSTIZER_SELF_UPDATE_INTERVAL:-15m}"
POSTIZER_SELF_UPDATE_INITIAL_DELAY: "${POSTIZER_SELF_UPDATE_INITIAL_DELAY:-5m}"
volumes:
- postizer-runtime:/app/runtime
- postizer-content:/app/content
- postizer-media:/app/media
volumes:
postizer-runtime:
postizer-content:
postizer-media: