mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
d2edd7df49
Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
42 lines
No EOL
672 B
YAML
42 lines
No EOL
672 B
YAML
services:
|
|
db:
|
|
image: postgres:alpine
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/postgresql/data:Z
|
|
env_file:
|
|
- db.env
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
restart: always
|
|
|
|
app:
|
|
image: nextcloud:apache
|
|
restart: always
|
|
ports:
|
|
- 127.0.0.1:8080:80
|
|
volumes:
|
|
- nextcloud:/var/www/html:z
|
|
environment:
|
|
- POSTGRES_HOST=db
|
|
- REDIS_HOST=redis
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
|
|
cron:
|
|
image: nextcloud:apache
|
|
restart: always
|
|
volumes:
|
|
- nextcloud:/var/www/html:z
|
|
entrypoint: /cron.sh
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
|
|
volumes:
|
|
db:
|
|
nextcloud: |