Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n8maninger/docker-vue-router
Docker image containing the necessary nginx configuration for vue-router history mode
https://github.com/n8maninger/docker-vue-router
docker-image dockerfile vue vue-router
Last synced: about 1 month ago
JSON representation
Docker image containing the necessary nginx configuration for vue-router history mode
- Host: GitHub
- URL: https://github.com/n8maninger/docker-vue-router
- Owner: n8maninger
- Created: 2019-06-23T11:45:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-27T22:30:51.000Z (over 2 years ago)
- Last Synced: 2024-11-15T04:42:54.116Z (2 months ago)
- Topics: docker-image, dockerfile, vue, vue-router
- Language: Go
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A minimal static web server to serve Vue applications with history-mode
Example:
```dockerfile
# build
FROM node:lts AS buildWORKDIR /app
COPY . .
RUN npm install && npm run buildFROM n8maninger/vue-router
COPY --from=build /app/dist /www
```