5ca66f3ed7
Publish Docker image / build-and-push (push) Successful in 3m34s
Leftover naming from before the app was renamed to lovelope. Renamed the local data/askedout.db file to data/lovelope.db to match (data/ is gitignored, so this doesn't touch version control).
16 lines
348 B
YAML
16 lines
348 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
DATABASE_URL: "file:/app/data/lovelope.db"
|
|
APP_URL: "http://localhost:3000"
|
|
NODE_ENV: "development"
|
|
GIPHY_API_KEY: "${GIPHY_API_KEY:-}"
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|