https://github.com/tanmayvaij/strapi-postgres-docker-v4
Strapi v4 project with a Dockerized setup. It includes a Dockerfile for building the app and a Docker Compose file for quick container management, offering an easy and scalable solution for both local development and deployment
https://github.com/tanmayvaij/strapi-postgres-docker-v4
docker docker-compose docker-container docker-image dockerfile strapi strapi-cms strapi4 strapijs
Last synced: 2 months ago
JSON representation
Strapi v4 project with a Dockerized setup. It includes a Dockerfile for building the app and a Docker Compose file for quick container management, offering an easy and scalable solution for both local development and deployment
- Host: GitHub
- URL: https://github.com/tanmayvaij/strapi-postgres-docker-v4
- Owner: tanmayvaij
- Created: 2024-08-28T05:17:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-22T09:38:52.000Z (over 1 year ago)
- Last Synced: 2025-03-15T06:44:26.132Z (9 months ago)
- Topics: docker, docker-compose, docker-container, docker-image, dockerfile, strapi, strapi-cms, strapi4, strapijs
- Language: JavaScript
- Homepage:
- Size: 196 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Getting started with Strapi
Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds.
### `develop`
Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop)
```
npm run develop
# or
yarn develop
```
### `start`
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start)
```
npm run start
# or
yarn start
```
### `build`
Build your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build)
```
npm run build
# or
yarn build
```
## ⚙️ Deployment
Strapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case.
```
yarn strapi deploy
```
## 📚 Learn more
- [Resource center](https://strapi.io/resource-center) - Strapi resource center.
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation.
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community.
- [Strapi blog](https://strapi.io/blog) - Official Strapi blog containing articles made by the Strapi team and the community.
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements.
Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome!
## ✨ Community
- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team.
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members.
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi.
---