Skip to content

Commit

Permalink
build: added docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
RiccardoM committed Sep 18, 2023
1 parent 070fc92 commit da50819
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,6 @@ node_modules/

# dotenv environment variables file
.env

# Docker
docker-compose.yml
12 changes: 12 additions & 0 deletions docker-compose-template.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.6'
services:

## Bondscape website
apis:
build: .
image: desmoslabs/bondscape-website
container_name: "bondscape-website"
user: "${UID}:${GID}"
ports:
- "3000:3000"
restart: always

0 comments on commit da50819

Please sign in to comment.