Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nextcloud
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Michel Memeteau
nextcloud
Commits
79107428
Commit
79107428
authored
6 years ago
by
Timothee Gosselin
Browse files
Options
Downloads
Patches
Plain Diff
use indiehost image + version as env
parent
61e3269b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+0
-2
0 additions, 2 deletions
Dockerfile
config/mail.config.php
+0
-14
0 additions, 14 deletions
config/mail.config.php
docker-compose.yml
+4
-4
4 additions, 4 deletions
docker-compose.yml
with
4 additions
and
20 deletions
Dockerfile
deleted
100644 → 0
+
0
−
2
View file @
61e3269b
FROM
nextcloud:13-fpm
COPY
/config/mail.config.php /usr/src/nextcloud/config/
This diff is collapsed.
Click to expand it.
config/mail.config.php
deleted
100644 → 0
+
0
−
14
View file @
61e3269b
<?php
$CONFIG
=
array
(
'mail_domain'
=>
getenv
(
'MAIL_DOMAIN'
),
'mail_from_address'
=>
getenv
(
'MAIL_FROM'
),
'mail_smtpmode'
=>
'smtp'
,
'mail_smtphost'
=>
getenv
(
'MAIL_HOST'
),
'mail_smtpport'
=>
getenv
(
'MAIL_PORT'
),
'mail_smtpauth'
=>
1
,
'mail_smtpauthtype'
=>
'LOGIN'
,
'mail_smtpname'
=>
getenv
(
'SMTP_NAME'
),
'mail_smtppassword'
=>
getenv
(
'MAIL_PASS'
),
'mail_smtpsecure'
=>
'tls'
,
);
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
4
−
4
View file @
79107428
...
@@ -23,7 +23,7 @@ services:
...
@@ -23,7 +23,7 @@ services:
-
back
-
back
-
lb_web
-
lb_web
app
:
app
:
build
:
.
image
:
indiehosters/nextcloud:${NEXTCLOUD_VERSION:-latest}
links
:
links
:
-
db
-
db
volumes
:
volumes
:
...
@@ -46,7 +46,7 @@ services:
...
@@ -46,7 +46,7 @@ services:
networks
:
networks
:
-
back
-
back
db
:
db
:
image
:
mysql:5.7
image
:
mysql:
${MYSQL_VERSION:-
5.7
}
volumes
:
volumes
:
-
./mysql/runtime:/var/lib/mysql
-
./mysql/runtime:/var/lib/mysql
environment
:
environment
:
...
@@ -54,11 +54,11 @@ services:
...
@@ -54,11 +54,11 @@ services:
networks
:
networks
:
-
back
-
back
redis
:
redis
:
image
:
redis
image
:
redis
:${REDIS_VERSION:-latest}
networks
:
networks
:
-
back
-
back
cron
:
cron
:
image
:
nextcloud:13-fpm
image
:
indiehosters/nextcloud:${NEXTCLOUD_VERSION:-latest}
links
:
links
:
-
db
-
db
volumes_from
:
volumes_from
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment