archive
This commit is contained in:
3
kanboard/restya/build_and_run.sh
Executable file
3
kanboard/restya/build_and_run.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#! /bin/bash
|
||||
|
||||
docker-compose up
|
||||
33
kanboard/restya/docker-compose.yaml
Executable file
33
kanboard/restya/docker-compose.yaml
Executable file
@@ -0,0 +1,33 @@
|
||||
version: '2'
|
||||
volumes:
|
||||
restyaboard_db:
|
||||
driver: local
|
||||
restyaboard_media:
|
||||
driver: local
|
||||
services:
|
||||
restyaboard:
|
||||
image: restyaplatform/restyaboard:dev
|
||||
environment:
|
||||
POSTGRES_DB: restyaboard
|
||||
POSTGRES_HOST: postgres
|
||||
POSTGRES_PASSWORD: admin
|
||||
POSTGRES_USER: admin
|
||||
SMTP_DOMAIN: domain
|
||||
SMTP_USERNAME: user
|
||||
SMTP_PASSWORD: pass
|
||||
SMTP_SERVER: server
|
||||
SMTP_PORT: 465
|
||||
TZ: Etc/UTC
|
||||
volumes:
|
||||
- restyaboard_media:/usr/share/nginx/html/media
|
||||
ports:
|
||||
- "8344:80"
|
||||
postgres:
|
||||
image: postgres:9-alpine
|
||||
environment:
|
||||
POSTGRES_DB: restyaboard
|
||||
POSTGRES_HOST: postgres
|
||||
POSTGRES_PASSWORD: admin
|
||||
POSTGRES_USER: admin
|
||||
volumes:
|
||||
- restyaboard_db:/var/lib/postgresql/data
|
||||
1
kanboard/restya/review
Executable file
1
kanboard/restya/review
Executable file
@@ -0,0 +1 @@
|
||||
cannot sign up/log in without valid smtp
|
||||
Reference in New Issue
Block a user