my god...it's finally done
This commit is contained in:
parent
2baf71214e
commit
19d76ebc47
43 changed files with 1008 additions and 550 deletions
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
services:
|
||||
web:
|
||||
image: docker.arimelody.me/arimelody.me:latest
|
||||
build: .
|
||||
ports:
|
||||
- 8080:8080
|
||||
volumes:
|
||||
- ./uploads:/app/uploads
|
||||
environment:
|
||||
HTTP_DOMAIN: "https://arimelody.me"
|
||||
ARIMELODY_DB_HOST: db
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue