Updating to latest pagoda release
This commit is contained in:
parent
05cf6c8318
commit
4d5d45d1a4
111 changed files with 358 additions and 1535 deletions
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
services:
|
||||
app:
|
||||
build: .
|
||||
container_name: personal-site
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PAGODA_APP_ENVIRONMENT=production
|
||||
- PAGODA_APP_HOST=camzalewski.com
|
||||
- PAGODA_HTTP_HOSTNAME=0.0.0.0
|
||||
- PAGODA_HTTP_PORT=8000
|
||||
- PAGODA_APP_ENCRYPTIONKEY=${ENCRYPTION_KEY}
|
||||
volumes:
|
||||
- sqlite_data:/app/dbs
|
||||
- uploads:/app/uploads
|
||||
networks:
|
||||
- web
|
||||
|
||||
volumes:
|
||||
sqlite_data:
|
||||
uploads:
|
||||
|
||||
networks:
|
||||
web:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue