Add the docker-compose configuration and examples of env files.

dev
KKlochko 2 months ago
parent 1cd773cc6f
commit c074afb0f2

@ -0,0 +1,4 @@
DATABASE_URL=ecto://postgres:postgres@db/decentralised_book_index_prod
SECRET_KEY_BASE=<secret>
TOKEN_SIGNING_SECRET=<secret>
PHX_HOST=example.com

@ -0,0 +1,4 @@
POSTGRES_DB=decentralised_book_index_prod
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres

@ -0,0 +1,32 @@
version: '3'
networks:
dbi:
external: false
services:
db:
image: postgres:17-alpine
restart: always
volumes:
- ./data:/var/lib/postgresql/data
networks:
- dbi
env_file:
- .env_db
web:
# to build the image
build:
context: .
container_name: dbi
ports:
- 4000:4000
depends_on:
- db
networks:
- dbi
env_file:
- .env
Loading…
Cancel
Save