Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OERu
wenotes-docker
Commits
74466088
Commit
74466088
authored
Dec 20, 2016
by
Dave Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trying to get rid of pesky deleted files, dirs, and dir links
parent
dd405405
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
193 deletions
+0
-193
docker-couchdb/couchdb-1.6.0/couchdb-init.sh
docker-couchdb/couchdb-1.6.0/couchdb-init.sh
+0
-63
docker-couchdb/couchdb-1.6.0/vm.args
docker-couchdb/couchdb-1.6.0/vm.args
+0
-28
docker-couchdb/couchdb-2.0.0/couchdb-init.sh
docker-couchdb/couchdb-2.0.0/couchdb-init.sh
+0
-66
docker-couchdb/couchdb-2.0.0/local.ini
docker-couchdb/couchdb-2.0.0/local.ini
+0
-8
docker-couchdb/couchdb-2.0.0/vm.args
docker-couchdb/couchdb-2.0.0/vm.args
+0
-28
No files found.
docker-couchdb/couchdb-1.6.0/couchdb-init.sh
deleted
100755 → 0
View file @
dd405405
#!/bin/bash
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
set
-e
if
[
"
$1
"
=
'/usr/bin/couchdb'
]
;
then
if
[
!
-z
"
$NODENAME
"
]
&&
!
grep
"couchdb@"
/etc/couchdb/vm.args
;
then
echo
"-name couchdb@
$NODENAME
"
>>
/etc/couchdb/vm.args
fi
DOCKERFILE
=
/etc/couchdb/local.d/docker.ini
printf
"[chttpd]
\n
bind_address = any
\n
"
>
$DOCKERFILE
if
[
"
$COUCHDB_USER
"
]
&&
[
"
$COUCHDB_PASSWORD
"
]
;
then
# Create admin
echo
"Setting admin access details"
printf
"[admins]
\n
%s = %s
\n
"
"
$COUCHDB_USER
"
"
$COUCHDB_PASSWORD
"
>>
$DOCKERFILE
if
[
"
$COUCHDB_BOT_USER
"
]
&&
[
"
$COUCHDB_BOT_PASSWORD
"
]
;
then
printf
"%s = %s
\n
"
"
$COUCHDB_BOT_USER
"
"
$COUCHDB_BOT_PASSWORD
"
>>
$DOCKERFILE
fi
if
[
"
$COUCHDB_PROXYSECRET
"
]
;
then
echo
"Setting a proxy secret"
printf
"[couch_httpd_auth
\]\n
require_valid_user = true
\n
secret = %s
\n
"
"
$COUCHDB_PROXYSECRET
"
>>
$DOCKERFILE
else
printf
"[couch_httpd_auth
\]\n
require_valid_user = true
\n
"
>>
$DOCKERFILE
fi
chown
couchdb:couchdb
$DOCKERFILE
fi
# if we don't find an [admins] section followed by a non-comment, display a warning
if
!
grep
-Pzoqr
'\[admins\]\n[^;]\w+'
/etc/couchdb/local.d/
*
.ini
;
then
# The - option suppresses leading tabs but *not* spaces. :)
cat
>
&2
<<-
'
EOWARN
'
****************************************************
WARNING: CouchDB is running in Admin Party mode.
This will allow anyone with access to the
CouchDB port to access your database. In
Docker's default configuration, this is
effectively any other container on the same
system.
Use "-e COUCHDB_USER=admin -e COUCHDB_PASSWORD=password"
to set it in "docker run".
****************************************************
EOWARN
fi
exec
gosu couchdb
"
$@
"
fi
exec
"
$@
"
docker-couchdb/couchdb-1.6.0/vm.args
deleted
100644 → 0
View file @
dd405405
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# Ensure that the Erlang VM listens on a known port
-kernel inet_dist_listen_min 9100
-kernel inet_dist_listen_max 9100
# Tell kernel and SASL not to log anything
-kernel error_logger silent
-sasl sasl_error_logger false
# Use kernel poll functionality if supported by emulator
+K true
# Start a pool of asynchronous IO threads
+A 16
# Comment this line out to enable the interactive Erlang shell on startup
+Bd -noinput
docker-couchdb/couchdb-2.0.0/couchdb-init.sh
deleted
100755 → 0
View file @
dd405405
#!/bin/bash
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
set
-e
if
[
"
$1
"
=
'/opt/couchdb/bin/couchdb'
]
;
then
# we need to set the permissions here because docker mounts volumes as root
chown
-R
couchdb:couchdb /opt/couchdb
chmod
-R
0770 /opt/couchdb/data
chmod
664 /opt/couchdb/etc/
*
.ini
chmod
775 /opt/couchdb/etc/
*
.d
if
[
!
-z
"
$NODENAME
"
]
&&
!
grep
"couchdb@"
/opt/couchdb/etc/vm.args
;
then
echo
"-name couchdb@
$NODENAME
"
>>
/opt/couchdb/etc/vm.args
fi
if
[
"
$COUCHDB_USER
"
]
&&
[
"
$COUCHDB_PASSWORD
"
]
;
then
# Create admin
echo
"Setting admin access details"
printf
"[admins]
\n
%s = %s
\n
"
"
$COUCHDB_USER
"
"
$COUCHDB_PASSWORD
"
>
/opt/couchdb/etc/local.d/docker.ini
if
[
"
$COUCHDB_BOT_USER
"
]
&&
[
"
$COUCHDB_BOT_PASSWORD
"
]
;
then
printf
"%s = %s
\n
"
"
$COUCHDB_BOT_USER
"
"
$COUCHDB_BOT_PASSWORD
"
>>
/opt/couchdb/etc/local.d/docker.ini
fi
if
[
"
$COUCHDB_PROXYSECRET
"
]
;
then
echo
"Setting a proxy secret"
printf
"[couch_httpd_auth
\]\n
require_valid_user = true
\n
secret = %s
\n
"
"
$COUCHDB_PROXYSECRET
"
>>
/opt/couchdb/etc/local.d/docker.ini
else
printf
"[couch_httpd_auth
\]\n
require_valid_user = true
\n
"
>>
/opt/couchdb/etc/local.d/docker.ini
fi
chown
couchdb:couchdb /opt/couchdb/etc/local.d/docker.ini
fi
# if we don't find an [admins] section followed by a non-comment, display a warning
if
!
grep
-Pzoqr
'\[admins\]\n[^;]\w+'
/opt/couchdb/etc/local.d/
*
.ini
;
then
# The - option suppresses leading tabs but *not* spaces. :)
cat
>
&2
<<-
'
EOWARN
'
****************************************************
WARNING: CouchDB is running in Admin Party mode.
This will allow anyone with access to the
CouchDB port to access your database. In
Docker's default configuration, this is
effectively any other container on the same
system.
Use "-e COUCHDB_USER=admin -e COUCHDB_PASSWORD=password"
to set it in "docker run".
****************************************************
EOWARN
fi
exec
gosu couchdb
"
$@
"
fi
exec
"
$@
"
docker-couchdb/couchdb-2.0.0/local.ini
deleted
100644 → 0
View file @
dd405405
; CouchDB Configuration Settings
; Custom settings should be made in this file. They will override settings
; in default.ini, but unlike changes made to default.ini, this file won't be
; overwritten on server upgrade.
[chttpd]
bind_address
=
any
docker-couchdb/couchdb-2.0.0/vm.args
deleted
100644 → 0
View file @
dd405405
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# Ensure that the Erlang VM listens on a known port
-kernel inet_dist_listen_min 9100
-kernel inet_dist_listen_max 9100
# Tell kernel and SASL not to log anything
-kernel error_logger silent
-sasl sasl_error_logger false
# Use kernel poll functionality if supported by emulator
+K true
# Start a pool of asynchronous IO threads
+A 16
# Comment this line out to enable the interactive Erlang shell on startup
+Bd -noinput
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment