You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
348 B

services:
api:
build:
context: .
dockerfile: Dockerfile
container_name: bottle-archive-api
ports:
- "8080:8000"
environment:
DATABASE_URL: sqlite:////app/data/bottle_archive.db
STORAGE_DIR: /app/storage
volumes:
- ./data:/app/data
- ./storage:/app/storage
restart: unless-stopped