exmr/docker-compose.yml
Vladimir Rubin cecfb39215
Some checks failed
Checks / check (push) Failing after 1m31s
Build and Push Docker Image / Build and Push Image (push) Successful in 1m14s
feat: add toggable registration
2024-11-28 12:31:10 +02:00

25 lines
517 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "4000:4000"
environment:
- DATABASE_URL=${DATABASE_URL}
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- EXMR_ENABLE_REGISTRATION=true
depends_on:
- db
db:
image: postgres:16-alpine
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- db_data:/var/lib/postgresql/data
volumes:
db_data: