Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 66443fb

Browse files
committed
Docker: Make sure that tmp/pids is present in image
1 parent d78ea87 commit 66443fb

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ public/packs-test
2727
public/packs/*
2828
public/uploads
2929
tmp/*
30+
!tmp/pids/
31+
!tmp/pids/.keep
3032
yarn-error.log

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
!/log/.keep
1414
!/tmp/.keep
1515

16+
# Ignore pidfiles, but keep the directory.
17+
/tmp/pids/*
18+
!/tmp/pids/
19+
!/tmp/pids/.keep
20+
1621
# Ignore uploaded files in development
1722
/storage/*
1823
!/storage/.keep

docker/startup.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
./docker/wait-for-services.sh
44
./docker/prepare-db.sh
5-
mkdir -p ./tmp/pids
65
bundle exec puma -C config/puma.rb

tmp/pids/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)