Skip to content

Commit

Permalink
[DEV-1074] add docker-compose
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Nikitin <andrew.nikitin@cheqd.io>
  • Loading branch information
Andrew Nikitin committed Apr 14, 2022
1 parent 57eea48 commit 6e804f9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: '3.7'


services:
did_resolver:
build:
dockerfile: Dockerfile
user: root
configs:
- source: config
target: /root/config.yml
expose:
- 1313
env_file:
- docker-compose.env
# profiles:
# - resolver

redirect:
image: morbz/docker-web-redirect
restart: always
ports:
- "80:80"
environment:
- VIRTUAL_HOST=localhost:80
- REDIRECT_TARGET=http://localhost:1313
# profiles:
# - driver

configs:
config:
file: config.yml

0 comments on commit 6e804f9

Please sign in to comment.