Skip to content

Instantly share code, notes, and snippets.

View florish's full-sized avatar

Floris Huetink florish

View GitHub Profile
@dogweather
dogweather / Dockerfile
Last active June 6, 2022 11:56
Elixir/Phoenix Docker-based Development Environment
# Elixir + Phoenix
FROM elixir:1.6.1
# Install debian packages
RUN apt-get update
RUN apt-get install --yes build-essential inotify-tools postgresql-client
# Install Phoenix packages
RUN mix local.hex --force

(a gist based on the old toolmantim article on setting up remote repos)

To collaborate in a distributed development process you’ll need to push code to remotely accessible repositories.

This is somewhat of a follow-up to the previous article setting up a new rails app with git.

For the impatient

Set up the new bare repo on the server: