mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
* It is now possible to follow a post in order to receive updates about it * Notifications are now sent when updates are published * Post status changes are now tracked * Update sidebar now shows the post status history * Mark a comment as a post update using the comment form * ... more ...
32 lines
567 B
YAML
32 lines
567 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: postgres
|
|
environment:
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
volumes:
|
|
- dbdata:/var/lib/postgresql/data
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/app/Dockerfile
|
|
environment:
|
|
- UPDATE=0
|
|
- ENVIRONMENT
|
|
- SECRET_KEY_BASE
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
- EMAIL_CONFIRMATION
|
|
- APP_NAME
|
|
- SHOW_LOGO
|
|
- POSTS_PER_PAGE
|
|
volumes:
|
|
- .:/astuto
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
dbdata: |