Dev env
Some checks failed
/ Run tests (push) Failing after 16s
/ Run system tests (push) Failing after 15s
/ Build, push and deploy image (push) Has been skipped

This commit is contained in:
david 2024-10-26 00:00:56 +02:00
parent 69f73845a3
commit 5079eaf864
3 changed files with 4 additions and 2 deletions

View file

@ -50,7 +50,7 @@
"terminal.integrated.defaultProfile.linux": "fish", "terminal.integrated.defaultProfile.linux": "fish",
"terminal.integrated.profiles.linux": { "terminal.integrated.profiles.linux": {
"fish": { "fish": {
"path": "/bin/fish" "path": "/usr/bin/fish"
} }
} }
} }

View file

@ -3,7 +3,7 @@ ARG UID=1000
ARG GID=1000 ARG GID=1000
ARG APP_PORT=3000 ARG APP_PORT=3000
ARG INSTALL_DIR=/${NAME} ARG INSTALL_DIR=/${NAME}
ARG RUBY_VERSION=3.3.5 ARG RUBY_VERSION=3.2.5
FROM ruby:${RUBY_VERSION} AS development FROM ruby:${RUBY_VERSION} AS development
ARG NAME ARG NAME

View file

@ -15,6 +15,8 @@ services:
- ${PWD}:${PWD} - ${PWD}:${PWD}
- ${HOME}/.tabby-client:/home/app/.tabby-client - ${HOME}/.tabby-client:/home/app/.tabby-client
- ${SSH_AUTH_SOCK}:/ssh-agent - ${SSH_AUTH_SOCK}:/ssh-agent
env_file:
- .env
environment: environment:
RAILS_ENV: development RAILS_ENV: development
LOG_LEVEL: debug LOG_LEVEL: debug