Skip to content

Instantly share code, notes, and snippets.

View orthodoX's full-sized avatar

Slobodan Erak orthodoX

View GitHub Profile
@orthodoX
orthodoX / docker-compose.yml
Created July 28, 2022 12:59
Docker compose with Postgres
version: '3.9'
services:
app:
build: .
volumes:
- .:/app
stdin_open: true
tty: true
postgres:
image: postgres:14.4-alpine
@orthodoX
orthodoX / Dockerfile
Last active February 27, 2023 10:05
Ruby dev container json template
FROM yourrepo-app:latest
RUN apk --update add openssh-client
RUN echo '.devcontainer/' > ~/.gitignore
RUN gem install solargraph --no-document
RUN bundle exec rubocop --start-server