-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM couchdb:3.4.1-nouveau AS base | ||
|
||
# temporary fix https://github.com/apache/couchdb/issues/5262 | ||
RUN apt-get update && apt-get install -y wget unzip | ||
RUN wget https://github.com/user-attachments/files/17186496/nouveau-1.0-SNAPSHOT-4299acf4.jar.zip -O /tmp/nouveau-4299acf4.jar.zip | ||
RUN unzip /tmp/nouveau-4299acf4.jar.zip -d /tmp | ||
|
||
FROM couchdb:3.4.1-nouveau | ||
|
||
COPY --chown=nouveau:nouveau --from=base /tmp/nouveau-1.0-SNAPSHOT-4299acf4.jar /opt/nouveau/lib/nouveau-1.0-SNAPSHOT.jar | ||
COPY --chown=nouveau:nouveau nouveau.yaml /opt/nouveau/etc/nouveau.yaml | ||
|
||
VOLUME /data/nouveau | ||
|
||
# 5987: Nouveau App | ||
# 5989: Nouveau Admin | ||
EXPOSE 5987 5989 | ||
|
||
LABEL Authors="MEDIC SRE TEAM<[email protected]>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
maxIndexesOpen: 3000 | ||
commitIntervalSeconds: 30 | ||
idleSeconds: 60 | ||
rootDir: ./data/nouveau | ||
|
||
logging: | ||
level: INFO | ||
|
||
server: | ||
applicationConnectors: | ||
- type: http | ||
bindHost: 0.0.0.0 | ||
port: 5987 | ||
useDateHeader: false | ||
adminConnectors: | ||
- type: http | ||
bindHost: 0.0.0.0 | ||
port: 5989 | ||
useDateHeader: false | ||
gzip: | ||
includedMethods: | ||
- GET | ||
- POST | ||
requestLog: | ||
appenders: | ||
- type: console | ||
target: stderr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters