2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-06-23 09:39:23 +02:00

Merge pull request #4 from nupplaphil/friendica_server

Temporary change image name
This commit is contained in:
Hypolite Petovan 2018-05-22 14:51:22 -04:00 committed by GitHub
commit c591457367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 13 additions and 13 deletions

View file

@ -1,4 +1,4 @@
FROM friendica:apache FROM friendica/server:apache
# simple = using an smtp without any credentials (mostly in local networks) # simple = using an smtp without any credentials (mostly in local networks)
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support) # custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)

View file

@ -1,4 +1,4 @@
FROM friendica:apache FROM friendica/server:apache
ENV AUTOINSTALL true ENV AUTOINSTALL true
ENV MARIADB_VERSION 10.3 ENV MARIADB_VERSION 10.3

View file

@ -1,4 +1,4 @@
FROM friendica:fpm FROM friendica/server:fpm
ENV AUTOINSTALL true ENV AUTOINSTALL true
ENV MARIADB_VERSION 10.3 ENV MARIADB_VERSION 10.3

View file

@ -1,4 +1,4 @@
FROM friendica:apache FROM friendica/server:apache
# simple = using an smtp without any credentials (mostly in local networks) # simple = using an smtp without any credentials (mostly in local networks)
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support) # custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)

View file

@ -1,4 +1,4 @@
FROM friendica:develop-fpm-alpine FROM friendica/server:fpm-alpine
# at least you HAVE to set one SMTP_HOST (normally something like mail.example.org) # at least you HAVE to set one SMTP_HOST (normally something like mail.example.org)
ENV SMTP_HOST mail ENV SMTP_HOST mail

View file

@ -1,4 +1,4 @@
FROM friendica:develop-fpm FROM friendica/server:fpm
# simple = using an smtp without any credentials (mostly in local networks) # simple = using an smtp without any credentials (mostly in local networks)
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support) # custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)

View file

@ -15,7 +15,7 @@ install:
before_script: before_script:
- env | sort - env | sort
- cd "$VARIANT" - cd "$VARIANT"
- slash='/'; image="friendica:${VARIANT//$slash/-}" - slash='/'; image="friendica/server:${VARIANT//$slash/-}"
script: script:
- docker build -t "$image" . - docker build -t "$image" .

View file

@ -46,7 +46,7 @@ If you use another container, make sure that you add them to the same docker net
In both cases you don't want to map the fpm port to you host. In both cases you don't want to map the fpm port to you host.
```console ```console
$ docker run -d friendica:fpm $ docker run -d friendica/server:fpm
``` ```
As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files. As the fastCGI-Process is not capable of serving static files (style sheets, images, ...) the webserver needs access to these files.
@ -99,7 +99,7 @@ Friendica:
```console ```console
$ docker run -d \ $ docker run -d \
-v friendica-vol-1:/var/www/html \ -v friendica-vol-1:/var/www/html \
friendica friendica/server
``` ```
Database: Database:
@ -209,7 +209,7 @@ services:
- MYSQL_RANDOM_ROOT_PASSWORD=yes - MYSQL_RANDOM_ROOT_PASSWORD=yes
app: app:
image: friendica image: friendica/server
restart: always restart: always
volumes: volumes:
- friendica:/var/www/html - friendica:/var/www/html
@ -264,7 +264,7 @@ services:
- MYSQL_RANDOM_ROOT_PASSWORD=yes - MYSQL_RANDOM_ROOT_PASSWORD=yes
app: app:
image: friendica:fpm image: friendica/server:fpm
restart: always restart: always
volumes: volumes:
- friendica:/var/www/html - friendica:/var/www/html

View file

@ -13,7 +13,7 @@ services:
- MYSQL_RANDOM_ROOT_PASSWORD=yes - MYSQL_RANDOM_ROOT_PASSWORD=yes
app: app:
image: friendica image: friendica/server
restart: always restart: always
ports: ports:
- 8080:80 - 8080:80
@ -31,7 +31,7 @@ services:
- db - db
cron: cron:
image: friendica image: friendica/server
restart: always restart: always
volumes: volumes:
- friendica:/var/www/html - friendica:/var/www/html