- add translation status to readme and contributing guide

- tweak configs
This commit is contained in:
2022-02-07 23:15:26 -05:00
parent 24fa837478
commit 94b88f9f9e
6 changed files with 753 additions and 54 deletions

View File

@ -2,19 +2,18 @@ version: '3'
services:
cannery:
build:
context: .
image: shibaobun/cannery
container_name: cannery
restart: always
environment:
- HOST="your.domain.com"
- DATABASE_URL="ecto://postgres:postgres@cannery-db/cannery"
# generate a random base64 string 64 characters long, preferably not from a website
- SECRET_KEY_BASE="change-me-to-something-random-this-is-really-important-change-it"
# Use `docker run -it shibaobun/cannery mix phx.gen.secret` to generate a secret key base
- SECRET_KEY_BASE="change-me-this-is-really-important-seriously-change-it"
# uncomment to enable sign ups, watch for spam!
- REGISTRATION="public"
# - REGISTRATION="public"
expose:
- "80"
- "4000"
depends_on:
- cannery-db