Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/namikingsoft/docker-restyaboard
Build Restyaboard on Docker.
https://github.com/namikingsoft/docker-restyaboard
Last synced: 4 days ago
JSON representation
Build Restyaboard on Docker.
- Host: GitHub
- URL: https://github.com/namikingsoft/docker-restyaboard
- Owner: namikingsoft
- License: osl-3.0
- Created: 2015-08-30T13:35:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T10:11:42.000Z (over 7 years ago)
- Last Synced: 2024-08-02T12:51:26.306Z (3 months ago)
- Language: Shell
- Homepage: https://github.com/RestyaPlatform/board
- Size: 34.2 KB
- Stars: 38
- Watchers: 10
- Forks: 44
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - namikingsoft/docker-restyaboard - Build Restyaboard on Docker. (others)
README
Docker Restyaboard
==============================Build Restyaboard in Docker.
* Restyaboard
http://restya.com/board/* Docker
https://www.docker.com/Quick Start
------------------------------Build image and Run container using docker-compose.
``` bash
git clone https://github.com/namikingsoft/docker-restyaboard.git
cd docker-restyaboarddocker-compose up -d
```Please wait a few minutes to complete initialize.
Check URL
------------------------------```
http://(ServerIP):1234Username: admin
Password: restyaUsername: user
Password: restya
```Change Restyaboard Version
------------------------------Edit restyaboard/Dockerfile.
Available version is https://github.com/RestyaPlatform/board/releases```
ENV restyaboard_version=REPLACE_ME
```In case of upgrade version, rebuild image and recreate container.
```sh
docker-compose build
docker-compose up -d
```If you want to upgrade database, e.g.
(recommend to backup database before upgrade)```sh
docker-compose run --rm restyaboard bashexport PGHOST=$POSTGRES_PORT_5432_TCP_ADDR
export PGPORT=$POSTGRES_PORT_5432_TCP_PORT
export PGUSER=$POSTGRES_ENV_POSTGRES_USER
export PGPASSWORD=$POSTGRES_ENV_POSTGRES_PASSWORD
...
psql -d restyaboard -f sql/upgrade-0.1.3-0.1.4.sql
psql -d restyaboard -f sql/upgrade-0.1.4-0.1.5.sql
...
exit
```License
------------------------------[OSL 3.0](LICENSE.txt) fits in Restyaboard.