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

3
.gitignore vendored
View file

@ -4,5 +4,6 @@ db/
tmp/
test/
uploads/
docker-compose-test.yml
docker-compose*.yml
!docker-compose.example.yml
config*.toml

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

View file

@ -1,26 +0,0 @@
services:
web:
image: docker.arimelody.me/arimelody.me:latest
build: .
ports:
- 8080:8080
volumes:
- ./uploads:/app/uploads
environment:
ARIMELODY_PORT: 8080
ARIMELODY_HTTP_DOMAIN: "https://arimelody.me"
ARIMELODY_DB_HOST: db
ARIMELODY_DB_NAME: arimelody
ARIMELODY_DB_USER: arimelody
ARIMELODY_DB_PASS: fuckingpassword
DISCORD_ADMIN: # your discord user ID.
DISCORD_CLIENT: # your discord OAuth client ID.
DISCORD_SECRET: # your discord OAuth secret.
db:
image: postgres:16.1-alpine3.18
volumes:
- ./db:/var/lib/postgresql/data
environment:
POSTGRES_DB: arimelody
POSTGRES_USER: arimelody
POSTGRES_PASSWORD: fuckingpassword