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.
38 lines
830 B
38 lines
830 B
version: '3'
|
|
services:
|
|
mongo:
|
|
image: mongo:latest
|
|
ports:
|
|
- "27017:27017"
|
|
networks:
|
|
- internal
|
|
|
|
squidex2:
|
|
image: "squidex-local"
|
|
environment:
|
|
- URLS__BASEURL=http://localhost
|
|
- EVENTSTORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- ORLEANS__HOSTNAMEORIPADDRESS=FirstOfHost
|
|
- STORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- mongo
|
|
|
|
squidex1:
|
|
image: "squidex-local"
|
|
ports:
|
|
- "80:80"
|
|
environment:
|
|
- URLS__BASEURL=http://localhost
|
|
- EVENTSTORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- ORLEANS__HOSTNAMEORIPADDRESS=FirstOfHost
|
|
- STORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
networks:
|
|
- internal
|
|
depends_on:
|
|
- mongo
|
|
|
|
networks:
|
|
internal:
|
|
driver: bridge
|