Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pavel Kuzin
tower
Commits
46e46986
Commit
46e46986
authored
Jul 11, 2017
by
Aleksey Shirokih
Browse files
add openssl
parent
a360b272
Changes
3
Hide whitespace changes
Inline
Side-by-side
Dockerfile
View file @
46e46986
...
...
@@ -30,6 +30,7 @@ RUN apt-get update \
python-minimal
\
ca-certificates
\
openssh-client
\
openssl
\
&&
rm
-rf
/var/cache/apk/
*
\
&&
rm
-rf
/var/lib/apt/lists/
*
...
...
Dockerfile.alpine
View file @
46e46986
...
...
@@ -23,7 +23,7 @@ ENV ANSIBLE_HOST_KEY_CHECKING=False \
COPY --from=builder /opt/tower /opt/tower
# install systemv packages
RUN apk add --update ca-certificates openssh-client vim sqlite curl git libffi
RUN apk add --update ca-certificates openssh-client vim sqlite curl git libffi
openssl
WORKDIR /opt/tower
...
...
tower/models/service.py
View file @
46e46986
...
...
@@ -26,6 +26,7 @@ class Service(Model):
pool
=
ForeignKeyField
(
Pool
,
null
=
True
)
node
=
ForeignKeyField
(
Node
)
n_instances
=
IntegerField
(
default
=
0
)
#n_backup_services = IntegerField(default=0)
loglevel
=
CharField
(
default
=
"info"
,
choices
=
[
"notset"
,
"debug"
,
...
...
Write
Preview
Supports
Markdown
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