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.
29 lines
570 B
29 lines
570 B
version: '2.1'
|
|
services:
|
|
mongo:
|
|
image: mongo:latest
|
|
ports:
|
|
- "27018:27017"
|
|
networks:
|
|
- internal
|
|
restart: always
|
|
|
|
squidex:
|
|
image: "squidex"
|
|
ports:
|
|
- "80:80"
|
|
environment:
|
|
- URLS__BASEURL=http://localhost
|
|
- EVENTSTORE__CONSUME=true
|
|
- EVENTSTORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- STORE__MONGODB__CONFIGURATION=mongodb://mongo
|
|
- STORE__TYPE=MongoDB
|
|
depends_on:
|
|
- mongo
|
|
networks:
|
|
- internal
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
internal:
|
|
driver: bridge
|