https://github.com/digitalinteraction/thinkactive-stack
Stack component of the ThinkActive project
https://github.com/digitalinteraction/thinkactive-stack
Last synced: 9 months ago
JSON representation
Stack component of the ThinkActive project
- Host: GitHub
- URL: https://github.com/digitalinteraction/thinkactive-stack
- Owner: digitalinteraction
- License: bsd-2-clause
- Created: 2019-02-06T17:50:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T17:52:10.000Z (over 7 years ago)
- Last Synced: 2025-07-09T07:53:06.789Z (12 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Automagical Nginx Reverse Proxy stack
A [Docker](https://www.docker.com) stack that automatically generates nginx to reverse-proxy http(s) traffic to you containers,
Setup using (robb-j/common)[https://github.com/robb-j/common/tree/master/web-stack]
## Simple Deploy
```bash
# Where `dev-api` and `dev-web` are the containers to be restarted
ssh root@thinkactive.io deploy dev-api dev-web
```
## Manual Deploy
```bash
# Go to the directory
cd /srv/apps
# Pull the latest changes
git pull
# Restart containers
docker-compose up -d
```
## Api Commands
```bash
# Run Migrations
dc exec dev-api npx sequelize db:seed:all
# Run Seeds
dc exec dev-api npx sequelize db:seed:all
```