Skip to content

Instantly share code, notes, and snippets.

@travist
Created June 4, 2019 15:38
Show Gist options
  • Select an option

  • Save travist/beef883d02439f8cbebfc7df8433d3ea to your computer and use it in GitHub Desktop.

Select an option

Save travist/beef883d02439f8cbebfc7df8433d3ea to your computer and use it in GitHub Desktop.
Example Form.io Enterprise Docker Compose
version: '3.7'
services:
mongo:
image: mongo:4.1
restart: always
volumes:
- mdb-data:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME:
MONGO_INITDB_ROOT_PASSWORD:
redis:
image: redis
formio:
image: formio/formio-enterprise
restart: always
links:
- mongo
- redis
ports:
- "3000:80"
environment:
PRIMARY: 1
ADMIN_EMAIL: [email protected]
ADMIN_PASS: CHANGEME
LICENSE:
volumes:
mdb-data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment