home to your local SPACEGIRL 馃挮
arimelody.space
1services:
2 web:
3 image: docker.arimelody.space/arimelody-web:latest
4 build: .
5 ports:
6 - 8080:8080
7 volumes:
8 - ./uploads:/app/uploads
9 - ./config.toml:/app/config.toml
10 environment:
11 ARIMELODY_CONFIG: config.toml
12 db:
13 image: postgres:16.1-alpine3.18
14 volumes:
15 - arimelody-db:/var/lib/postgresql/data
16 environment:
17 POSTGRES_DB: # your database name here!
18 POSTGRES_USER: # your database user here!
19 POSTGRES_PASSWORD: # your database password here!
20
21volumes:
22 arimelody-db:
23 external: true