Skip to content

Commit

Permalink
new devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
haru committed Dec 30, 2023
1 parent 982f8a4 commit 5c2e13b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 209 deletions.
54 changes: 3 additions & 51 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,54 +1,6 @@
# [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster
ARG VARIANT=2-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}

# Install Rails
# RUN gem install rails webdrivers

# Default value to allow debug server to serve content over GitHub Codespace's port forwarding service
# The value is a comma-separated list of allowed domains
ENV RAILS_DEVELOPMENT_HOSTS=".githubpreview.dev"

# [Choice] Node.js version: lts/*, 16, 14, 12, 10
# ARG NODE_VERSION="lts/*"
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"

# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>

# [Optional] Uncomment this line to install additional gems.
# RUN gem install <your-gem-names-here>

# [Optional] Uncomment this line to install global node packages.
# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1

RUN apt-get update
RUN apt-get install -y imagemagick git-flow

WORKDIR /usr/local
ARG RUBY_VERSION=3.2
ARG REDMINE_VERSION=master
RUN git clone https://github.com/redmine/redmine.git -b ${REDMINE_VERSION}
WORKDIR /usr/local/redmine
RUN chown -R vscode .
COPY .devcontainer/database.yml /usr/local/redmine/config/database.yml

RUN rm -rf .git
# RUN echo "gem 'ruby-debug-ide'" >> Gemfile
RUN echo "gem 'debug'" >> Gemfile
RUN echo "gem 'rufo'" >> Gemfile
ENV DB=sqlite3
USER vscode
RUN bundle install
RUN bundle exec rake db:migrate
RUN bundle exec rake db:migrate RAILS_ENV=test
RUN bundle exec rake test:scm:setup:all
RUN mkdir -p .vscode

USER root

RUN sed -i "s/^end/ config.hosts.clear if config.respond_to?(:hosts)\nend/" config/environments/development.rb

FROM haru/redmine_devcontainer:${REDMINE_VERSION}-ruby${RUBY_VERSION}
COPY .devcontainer/post-create.sh /post-create.sh

WORKDIR /workspaces

2 changes: 0 additions & 2 deletions .devcontainer/create-db-user.sql

This file was deleted.

57 changes: 0 additions & 57 deletions .devcontainer/database.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
# Update 'VARIANT' to pick a version of Ruby: 3, 3.0, 2, 2.7, 2.6
# Append -bullseye or -buster to pin to an OS version.
# Use -bullseye variants on local arm64/Apple Silicon.
VARIANT: "3.2"
RUBY_VERSION: "3.1"
# Optional Node.js version to install
NODE_VERSION: "lts/*"
REDMINE_VERSION: "5.1-stable"
Expand Down
96 changes: 0 additions & 96 deletions .devcontainer/launch.json

This file was deleted.

14 changes: 12 additions & 2 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,20 @@ initdb() {

initdb

export DB=postgres
export DB=mysql2
export DB_NAME=redmine
export DB_USERNAME=root
export DB_PASSWORD=root
export DB_HOST=mysql
export DB_PORT=3306

initdb

export DB=mysql
export DB=postgresql
export DB_NAME=redmine
export DB_USERNAME=postgres
export DB_PASSWORD=postgres
export DB_HOST=postgres
export DB_PORT=5432

initdb

0 comments on commit 5c2e13b

Please sign in to comment.