update docker compose example

This commit is contained in:
ari melody 2024-11-10 05:58:05 +00:00
parent d3b55f2b3c
commit bb92ba114c
Signed by: ari
GPG key ID: CF99829C92678188
3 changed files with 25 additions and 27 deletions

View file

@ -0,0 +1,23 @@
services:
web:
image: docker.arimelody.me/arimelody.me:latest
build: .
ports:
- 8080:8080
volumes:
- ./uploads:/app/uploads
- ./config.toml:/app/config.toml
environment:
ARIMELODY_CONFIG: config.toml
db:
image: postgres:16.1-alpine3.18
volumes:
- arimelody-db:/var/lib/postgresql/data
environment:
POSTGRES_DB: # your database name here!
POSTGRES_USER: # your database user here!
POSTGRES_PASSWORD: # your database password here!
volumes:
arimelody-db:
external: true