Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/naoyamiyagawa/tutors2022


https://github.com/naoyamiyagawa/tutors2022

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

# tutors2022

## NicoCalendar

- HTML ver.
- Vanilla JS
- http://localhost:8080/index.html
- jQuery
- http://localhost:8080/index-jquery.html
- PHP ver. (runnable on docker (php-apache))
- PHP
- http://localhost:8080/index.php
- phpinfo
- http://localhost:8080/info.php

### Docker

```bash
# build
docker image build -t my-php-apache ./docker

# run
docker run --privileged -it --rm -v $(pwd):/var/www/html -p 8080:80 --name test my-php-apache

# exec
docker exec test bash

# check apache2 running ( # apachectl start )
$ service apache2 status
```

### Docker Compose

```bash
docker compose up -d --build
docker compose exec web bash
```