https://github.com/thewalkingtoast/phoenix-api
A public Docker image for making Phoenix APIs
https://github.com/thewalkingtoast/phoenix-api
Last synced: about 1 month 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-02T05:13:29.000Z (about 8 years ago)
- Last Synced: 2025-03-30T19:31:21.916Z (3 months ago)
- Size: 130 KB
- Stars: 0
- Watchers: 2
- 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 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