Skip to content

Instantly share code, notes, and snippets.

@gigibytes
gigibytes / Dockerfile
Created September 27, 2024 17:06 — forked from petelacey/Dockerfile
Docker Compose setup for Elixir, Phoenix, and Postgres
FROM elixir:latest
# Install debian packages
RUN apt-get update && \
apt-get install --yes build-essential inotify-tools postgresql-client git && \
apt-get clean
ADD . /app
# Install Phoenix packages
@gigibytes
gigibytes / Vagrantfile
Last active March 5, 2024 00:43
Pragmatic Programmer Ruby/Rails Course Vagrantfile + Ansible Playbook
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/mantic64"
config.vm.provision "ansible" do |ansible|
ansible.verbose = "v"
ansible.playbook = "playbook.yml"
end
end