Last active
July 12, 2022 05:42
-
-
Save TaylorJadin/2ba204423e21ac9a9e41c96aed8ad7f5 to your computer and use it in GitHub Desktop.
docker compose for nextcloud
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
app: | |
image: nextcloud | |
restart: always | |
ports: | |
- '8080:80' | |
volumes: | |
- 'nextcloud:/var/www/html' | |
volumes: | |
nextcloud: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment