https://github.com/prisma-cms/docker-nextjs
docker-compose boilerplate for @prisma-cms/nextjs
https://github.com/prisma-cms/docker-nextjs
Last synced: 2 months ago
JSON representation
docker-compose boilerplate for @prisma-cms/nextjs
- Host: GitHub
- URL: https://github.com/prisma-cms/docker-nextjs
- Owner: prisma-cms
- Created: 2021-04-23T17:07:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-14T06:18:38.000Z (almost 2 years ago)
- Last Synced: 2026-03-06T12:05:49.032Z (3 months ago)
- Language: Dockerfile
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
Awesome Lists containing this project
README
## Prerequirments
- git
- docker v 19+
- docker-compose v 1.25+
## Instalation
1. Clone project with submodules
```
git clone --recurse-submodules https://github.com/prisma-cms/docker my-project-name
cd my-project-name
```
2. Copy and edit environments file
```
cp .env.sample .env
```
3. Copy and edit web-server config file
```
cp caddy/Caddyfile.sample caddy/Caddyfile
```
4. Copy and edit coturn config file
```
cp coturn/turnserver.conf.sample coturn/turnserver.conf
```
## Start dev
### set DOCKER_BUILDKIT=0
https://github.com/moby/buildkit/issues/978#issuecomment-686420433
```sh
export DOCKER_BUILDKIT=0
```
### First start
```
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d mysql
```
Check this containers been started
```
docker-compose ps mysql
```
Start proxy server
```
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d proxy
```
### WebRTC services for videochats
```
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d rtcmultyconnection coturn
```
### Additional services
Start PhpMyAdmin
```
docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d pma
```
After try open http://localhost:2017
## Start prod
```
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up --build -d
```
## Stop all containers
```
# In project's folder
docker-compose stop
```
## Remove all containers
```
# In project's folder
docker-compose down
```