services: ciao: image: brotandgames/ciao container_name: ciao ports: - '8090:3000' environment: - TIME_ZONE=Rome - BASIC_AUTH_USERNAME=myusername - BASIC_AUTH_PASSWORD=mypassword # - SECRET_KEY_BASE=sensitive_secret_key_base #generata automaticamente se omessa # - SMTP_ADDRESS=smtp.yourhost.com # - SMTP_EMAIL_FROM=ciao@yourhost.com # - SMTP_EMAIL_TO=you@yourhost.com # - SMTP_PORT=587 # - SMTP_AUTHENTICATION=plain # - SMTP_DOMAIN=smtp.yourhost.com # - SMTP_ENABLE_STARTTLS_AUTO=true # - SMTP_USERNAME=ciao # - SMTP_PASSWORD=sensitive_password volumes: - ./data:/app/db/sqlite/ restart: unless-stopped