13 lines
235 B
YAML
13 lines
235 B
YAML
services:
|
|
urlshort:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
# Persist the SQLite database outside the container
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
|