mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
994 B
43 lines
994 B
version: '3'
|
|
services:
|
|
mongo:
|
|
image: mongo:latest
|
|
ports:
|
|
- "27018:27017"
|
|
networks:
|
|
- internal
|
|
|
|
squidex:
|
|
image: squidex
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
- URLS__BASEURL=http://localhost:8080
|
|
- ASSETS_RESIZERURL=http://resizer:8081
|
|
- EVENTSTORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- GRAPHQL__CACHEDURATION=0
|
|
- IDENTITY__ADMINCLIENTID=root
|
|
- IDENTITY__ADMINCLIENTSECRET=xeLd6jFxqbXJrfmNLlO2j1apagGGGSyZJhFnIuHp4I0=
|
|
- IDENTITY__MULTIPLEDOMAINS=true
|
|
- SCRIPTING__TIMEOUTEXECUTION=00:00:10
|
|
- SCRIPTING__TIMEOUTSCRIPT=00:00:10
|
|
- STORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- STORE__TYPE=MongoDB
|
|
- TEMPLATES__LOCALURL=http://localhost:80
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- mongo
|
|
|
|
resizer:
|
|
image: squidex/resizer:dev-2
|
|
ports:
|
|
- "8081:80"
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- mongo
|
|
|
|
networks:
|
|
internal:
|
|
driver: bridge
|