Created
September 3, 2024 03:06
-
-
Save EhWhoAmI/c076c3c1a24b220b8feda65e3154c2c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.2" | |
services: | |
outline: | |
image: docker.getoutline.com/outlinewiki/outline:0.78.0 | |
env_file: ./docker.env | |
ports: | |
- "3000:3000" | |
volumes: | |
- storage-data:/var/lib/outline/data | |
depends_on: | |
- postgres | |
- redis | |
restart: always | |
# adminer: | |
# image: adminer | |
# restart: always | |
# ports: | |
# - 3000:8080 | |
redis: | |
image: redis | |
env_file: ./docker.env | |
ports: | |
- "6379:6379" | |
volumes: | |
- ./redis.conf:/redis.conf | |
command: ["redis-server", "/redis.conf"] | |
healthcheck: | |
test: ["CMD", "redis-cli", "ping"] | |
interval: 10s | |
timeout: 30s | |
retries: 3 | |
restart: always | |
postgres: | |
image: postgres | |
env_file: ./docker.env | |
ports: | |
- "5432:5432" | |
volumes: | |
- database-data:/var/lib/postgresql/data | |
healthcheck: | |
test: ["CMD", "pg_isready", "-d", "outline", "-U", "user"] | |
interval: 30s | |
timeout: 20s | |
retries: 3 | |
environment: | |
POSTGRES_USER: 'user' | |
POSTGRES_PASSWORD: 'pass' | |
POSTGRES_DB: 'outline' | |
restart: always | |
volumes: | |
storage-data: | |
database-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment