2025-02-23 16:16:26 +00:00
|
|
|
version: '2.1'
|
2023-07-16 00:28:13 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: redis:latest
|
|
|
|
container_name: redis
|
|
|
|
restart: always
|
|
|
|
app:
|
|
|
|
image: nextcloud:latest
|
|
|
|
container_name: nextcloud
|
|
|
|
hostname: next.ionathan.ch
|
|
|
|
ports:
|
|
|
|
- 8000:80
|
|
|
|
volumes:
|
|
|
|
- .:/var/www/html
|
|
|
|
restart: always
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
environment:
|
|
|
|
- REDIS_HOST=redis
|
2025-02-23 16:16:26 +00:00
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
name: nextcloud
|