Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thewalkingtoast/phoenix-api
A public Docker image for making Phoenix APIs
https://github.com/thewalkingtoast/phoenix-api
Last synced: 15 days ago
JSON representation
A public Docker image for making Phoenix APIs
- Host: GitHub
- URL: https://github.com/thewalkingtoast/phoenix-api
- Owner: thewalkingtoast
- Created: 2015-10-07T18:10:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-02T05:13:29.000Z (over 7 years ago)
- Last Synced: 2024-10-25T02:04:57.068Z (2 months ago)
- Size: 130 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A Docker container for the Phoenix framework
It features all the latest versions of the Phoenix web framework, the Elixir language and the Erlang platform.
**No Node installation is present so Brunch will not work (no Assets management). This is for APIs only.**
Borrowed from https://github.com/marcelocg/phoenix-docker
![Phoenix Logo](https://www.filepicker.io/api/file/9prSmznZTiaRRmI3t89E)
Phoenix is a framework for building scalable web applications with realtime connectivity across all your devices. It relies on the Elixir language for making the development of maintainable applications productive and fun.
### Building local image
docker build -t thewalkingtoast/phoenix-api:latest .### How to use this image
docker run -it --rm -v "$PWD":/code -w /code thewalkingtoast/phoenix-api mix phoenix.new --no-brunch /code/my_new_app
### Test it out
docker run -it --rm -v "$PWD":/code -w /code/my_new_app thewalkingtoast/phoenix-api iex -S mix phoenix.server