https://github.com/yoshi0207/developacmsextensionimage
Docker Image running Composer and Nodejs.
https://github.com/yoshi0207/developacmsextensionimage
docker-image
Last synced: about 1 month ago
JSON representation
Docker Image running Composer and Nodejs.
- Host: GitHub
- URL: https://github.com/yoshi0207/developacmsextensionimage
- Owner: Yoshi0207
- License: mit
- Created: 2021-02-14T01:03:35.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-20T05:23:27.000Z (over 5 years ago)
- Last Synced: 2025-01-18T16:23:55.647Z (over 1 year ago)
- Topics: docker-image
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/yoshi0207/acms_extension
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Develop Acms Extension Image
Docker Image running Composer and Nodejs. Use this Image for continuous integration of a-blog cms extension development.
## Usage
Run the following command in your repository to create the docker container.
```
docker build -t .
docker run -it -d --name
```
### Note
- User home directory is `/root`.
## Example
Create the docker container.
```
docker build -t acms .
docker run -it -d --name acms -v /foo/var/acms-extension:/root acms
```
After build completely finishes, enter in a Docker container to use npm and composer.
```
docker exec -i -t acms bash
cd root
npm install
composer install
```