Files
no-whatever/docker-compose.yml
T

19 lines
328 B
YAML

services:
app:
build: .
image: no-whatever:latest
container_name: no-whatever
ports:
- "3000:3000"
volumes:
- /data/no-whatever:/app/data
environment:
- DATABASE_URL=file:/app/data/prod.db
restart: unless-stopped
networks:
- nginx
networks:
nginx:
external: true