Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aminnairi/vue-docker-template
Template for running Vue inside of a container.
https://github.com/aminnairi/vue-docker-template
Last synced: about 5 hours ago
JSON representation
Template for running Vue inside of a container.
- Host: GitHub
- URL: https://github.com/aminnairi/vue-docker-template
- Owner: aminnairi
- Created: 2023-09-20T14:59:15.000Z (about 1 year ago)
- Default Branch: development
- Last Pushed: 2023-09-20T19:50:55.000Z (about 1 year ago)
- Last Synced: 2024-05-27T22:05:12.941Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-docker-template
Template for running Vue inside of a container.
## Requirements
- [Docker](https://www.docker.com/)
- [Docker Compose](https://docs.docker.com/compose/)## Environment Configuration
```bash
cp .env.example .env
```Please, take some time reviewing the configuration of the project by editing the `.env` file before going any further.
## Docker Compose Services Startup
```bash
docker-compose up --detach
```## Production Build
```bash
docker-compose exec node npm run build
```## Docker Compose Services Shutdown
```bash
docker-compose down --remove-orphans --volumes --timeout 0
```## Documentation
- [Vite.js](https://vitejs.dev/guide/)
- [Vue.js](https://vuejs.org/guide/introduction.html)
- [Docker](https://docs.docker.com/)
- [Docker Compose](https://docs.docker.com/compose/compose-file/)