forked from CenterForOpenScience/osf.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Documentation] Update docs, docker-compose configs for ARM64 (Center…
…ForOpenScience#10069) * Initial update for the README-docker-compose file * Another update * Additional updates for the readme file * Added more information to the read * Proposed changes to the docker-compose and docker-compose-dist.override files to make themmore maintailable * Add ARM64 DC.yml override - Refactor other docker-compose ymls closes CenterForOpenScience#10068 * Reorganize README-docker-compose for ARM64 closes CenterForOpenScience#10067 Co-authored-by: Brian Pilati <[email protected]>
- Loading branch information
Showing
3 changed files
with
129 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
## Reference README-docker-compose.md for instructions. | ||
|
||
version: '3.4' | ||
|
||
services: | ||
|
||
####### | ||
# OSF # | ||
####### | ||
|
||
requirements: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
|
||
assets: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
||
admin_assets: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
||
worker: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
||
admin: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
||
api: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
||
web: | ||
image: quay.io/centerforopenscience/osf:develop-arm64 | ||
platform: linux/arm64 | ||
# Need to allocate tty to be able to call invoke for requirements task | ||
tty: true | ||
|
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