A full featured blog in RiotJS
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.
 
 
 
 
 
 

30 lines
534 B

version: '3.4'
services:
couch:
restart: always
build: couchdb
ports:
- "127.0.0.1:5984:5984"
env_file:
- ".env"
environment:
- "COUCHDB_USER"
- "COUCHDB_PASSWORD"
- "COUCHDB_NAME"
web:
restart: always
build:
context: app
ports:
- "80"
env_file:
- ".env"
network_mode: host
depends_on:
- "couch"
environment:
- "COUCHDB_USER"
- "COUCHDB_PASSWORD"
- "COUCHDB_NAME"
- "SECRET_KEY"
- "ADMIN_PASSWORD"