mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 12:41:05 +01:00
merged master
This commit is contained in:
commit
64d46c52b0
@ -48,3 +48,5 @@ To use occ run:
|
||||
|
||||
## further information
|
||||
- https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml
|
||||
- https://goneuland.de/nextcloud-upgrade-auf-neue-versionen-mittels-docker/
|
||||
- https://help.nextcloud.com/t/cant-start-nextcloud-because-the-version-of-the-data-is-higher-than-the-docker-image-version-and-downgrading-is-not-supported/109438
|
||||
|
@ -21,23 +21,23 @@
|
||||
project_name: nextcloud
|
||||
definition:
|
||||
application:
|
||||
image: nextcloud:fpm-alpine
|
||||
image: "nextcloud:{{nextcloud_version}}-fpm-alpine"
|
||||
restart: always
|
||||
log_driver: journald
|
||||
links:
|
||||
- database
|
||||
volumes:
|
||||
- nextcloud-data:/var/www/html
|
||||
# Maybe error in following line
|
||||
# Maybe error in following line
|
||||
expose:
|
||||
- "9000"
|
||||
environment:
|
||||
DOCKER_CLIENT_TIMEOUT: 120
|
||||
COMPOSE_HTTP_TIMEOUT: 120
|
||||
MYSQL_DATABASE: "nextcloud"
|
||||
MYSQL_USER: "nextcloud"
|
||||
MYSQL_PASSWORD: "{{nextcloud_database_password}}"
|
||||
MYSQL_HOST: database:3306
|
||||
DOCKER_CLIENT_TIMEOUT: 120
|
||||
COMPOSE_HTTP_TIMEOUT: 120
|
||||
database:
|
||||
log_driver: journald
|
||||
image: mariadb
|
||||
|
Loading…
Reference in New Issue
Block a user