Skip to content

Instantly share code, notes, and snippets.

@ivopt
Last active October 8, 2022 19:08
Show Gist options
  • Save ivopt/623f765f32896d38756def0e0628c97f to your computer and use it in GitHub Desktop.
Save ivopt/623f765f32896d38756def0e0628c97f to your computer and use it in GitHub Desktop.
Pizza Place - Docker setup
version: "2"
services:
gitting_started:
build: ./
image: gitting_started
volumes:
- ./pizzaplace:/pizzaplace:cached
working_dir: /pizzaplace
FROM bitnami/git:latest
RUN apt-get update
RUN apt-get install -y --no-install-recommends --no-install-suggests less neovim
RUN echo "alias ll='ls -lah --color'" >> ~/.bashrc
WORKDIR /pizzaplace
CMD "bash"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment