https://github.com/sticksnleaves/docker-elixir-project
Base image for Elixir projects at Sticksnleaves
https://github.com/sticksnleaves/docker-elixir-project
dockerfile elixir
Last synced: 11 months ago
JSON representation
Base image for Elixir projects at Sticksnleaves
- Host: GitHub
- URL: https://github.com/sticksnleaves/docker-elixir-project
- Owner: sticksnleaves
- License: mit
- Created: 2016-10-28T06:10:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T20:12:23.000Z (over 6 years ago)
- Last Synced: 2025-01-13T20:47:40.043Z (about 1 year ago)
- Topics: dockerfile, elixir
- Language: Dockerfile
- Homepage: https://www.sticksnleaves.com
- Size: 45.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Supported tags and respective `Dockerfile` links
* [`1.8.2`, `1.8`, `latest` (1.8/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/2e4098a3136aa9fb871b7a0f59ccead6f51b17e7/Dockerfile)
* [`1.7.4`, `1.7` (1.7/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/4a366f7dce329d7ddbb00a2becc9b7899ff9bd85/Dockerfile)
* [`1.6.6`, `1.6` (1.6/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/8fe681365cc71d868c8458dcdece4afbde66c97e/Dockerfile)
* [`1.5.3`, `1.5` (1.5/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/873821310a246daa9463e181db6211cabf04c9f3/Dockerfile)
* [`1.4.4`, `1.4`, (1.4/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/01c1fd4941a70f6b996d3232a6a8c7f3ef3b4ad6/Dockerfile)
* [`1.3.4`, `1.3` (1.3/Dockerfile)](https://github.com/sticksnleaves/docker-elixir-project/blob/13e093b5cbc2866a26c2578d94312a08faa60f8a/Dockerfile)
# How to use this image
This image should primarily be used as a project's base image. When used with
`compose` this can be specified as the services `image`.
`/usr/src/app` is exposed at the images `WORKDIR`. All project files should
be contained within this directory. Most likely you want to mount this directory
as a local `volume`.
## Example `docker-compose.yml`
```
version: '3.6'
services:
app:
image: sticksnleaves/elixir-project:latest
volumes:
- .:/usr/src/app
```