Skip to content

sticksnleaves/docker-elixir-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

99 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Supported tags and respective Dockerfile links

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