19 lines
319 B
YAML
19 lines
319 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: maot-shortner:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3032:8080"
|
|
environment:
|
|
- DATABASE_PATH=/app/data/shortener.db
|
|
- APP_PORT=8080
|
|
volumes:
|
|
- data:/app/data
|
|
|
|
volumes:
|
|
data:
|