Created
November 30, 2021 19:03
-
-
Save briankelleher/86780421cb5105a226d53994b36eb49a to your computer and use it in GitHub Desktop.
ArchiveSpace Local Plugin Development
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
# docker-compose -f docker-compose-release.yml build | |
# docker-compose -f docker-compose-release.yml up | |
version: '3.8' | |
services: | |
app: | |
container_name: as_release_app | |
build: | |
context: . | |
dockerfile: Dockerfile | |
restart: on-failure | |
depends_on: | |
- db | |
- solr | |
env_file: | |
- .env.docker.release | |
volumes: | |
- ./plugins/sourcery:/archivesspace/plugins/sourcery | |
- ./config:/archivesspace/config | |
db: | |
container_name: as_release_db | |
image: mysql:8.0 | |
command: --character-set-server=UTF8MB4 --innodb_buffer_pool_size=2G --innodb_buffer_pool_instances=2 --log_bin_trust_function_creators=1 | |
ports: | |
- "3308:3306" | |
env_file: | |
- .env.docker.db | |
solr: | |
container_name: as_release_solr | |
build: | |
context: ./solr | |
image: archivesspace/solr:8.10 | |
command: solr-create -p 8983 -c archivesspace -d archivesspace | |
ports: | |
- "8985:8983" | |
web: | |
container_name: as_release_proxy | |
build: | |
args: | |
default: default.conf.release | |
context: ./proxy | |
image: archivesspace/proxy-release:1.21 | |
ports: | |
- "80:80" | |
depends_on: | |
- app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment