Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
# Nothing yet. Let's keep the outside and inside the same. If we start running into things that are
# generated inside the container during the build that we want isolated from the outside, we can
# add them here to be ignored. Just keep in mind that the whole root app is mounted as a volume,
# so at runtime, the container will have what's on the outside. This file only affects buildtime.
Gemfile.lock
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ services:
build:
context: .
command: /app/docker-compose/scripts/docker_compose_run.sh
# Temporarily replace the command above with this if you want the container to just stay open
# so you can connect and troubleshoot b/c the container exits when you bring it up.
#tty: true
ports:
- "3002:3002"
# Make changes done outside the container reflect inside the container without needing a rebuild by mounting a volume.
Expand Down