├── .dockerignore ├── Dockerfile ├── Makefile ├── README.md ├── config.yaml ├── docker-compose.yml ├── nginx.conf └── sql └── init.sql /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM arnanotf/godspen 2 | EXPOSE 7051 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/config.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/nginx.conf -------------------------------------------------------------------------------- /sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymm-tech/gods-pen-docker/HEAD/sql/init.sql --------------------------------------------------------------------------------