Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.42 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.42 KB

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