Adding nextcloud.
This commit is contained in:
parent
9439c3880e
commit
a1f1357c57
2 changed files with 22 additions and 0 deletions
|
@ -14,6 +14,10 @@ registry.dylanbaird.com {
|
|||
reverse_proxy registry:5000
|
||||
}
|
||||
|
||||
nextcloud.dylanbaird.com {
|
||||
reverse_proxy nextcloud:80
|
||||
}
|
||||
|
||||
immich.dylanbaird.com {
|
||||
reverse_proxy immich-server:2283
|
||||
}
|
||||
|
|
|
@ -113,5 +113,23 @@ services:
|
|||
restart: always
|
||||
networks:
|
||||
- barrios-network
|
||||
nextcloud:
|
||||
image: nextcloud:stable
|
||||
container_name: nextcloud
|
||||
ports:
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- /mertz/nextcloud:/var/www/html
|
||||
environment:
|
||||
- NEXTCLOUD_ADMIN_USER=${NEXTCLOUD_ADMIN_USER}
|
||||
- NEXTCLOUD_ADMIN_PASSWORD=${NEXTCLOUD_ADMIN_PASSWORD}
|
||||
- NEXTCLOUD_TRUSTED_DOMAINS=nextcloud.dylanbaird.com localhost 127.0.0.1
|
||||
- OVERWRITEPROTOCOL=https
|
||||
- OVERWRITEHOST=nextcloud.dylanbaird.com
|
||||
env_file:
|
||||
- .env
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- barrios-network
|
||||
networks:
|
||||
barrios-network:
|
||||
|
|
Loading…
Reference in a new issue